我製作RN應用程序。對於Android版本我已經 /drawable/splash_screen.xml與以下內容如何使用svg而不是png實現Android啓動畫面?
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@color/gray"/>
<item>
<bitmap
android:gravity="center"
android:src="@mipmap/ic_launcher"/>
</item>
</layer-list>
,並鏈接到本文件在res /價值/ styles.xml
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/splash_screen</item>
</style>
也AndoirdManifest.xml
<application
android:name=".MainApplication"
android:allowBackup="true"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/SplashTheme"
android:screenOrientation="landscape"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
這工作正常,但我想製作SVG文件,而不是PNG(mipmap/ic_launcher)。 SVG文件可能是這樣的 https://developer.android.com/reference/android/graphics/drawable/AnimatedVectorDrawable.html (至少沒有動畫)。 如何做到這一點?
我試着用可繪製的比例尺,但它的默認級別是0,不能在可繪製的xml中設置。這是一個恥辱,因爲這將是解決方案。 <規模 機器人:抽拉= 「@繪製/ somesvg」 機器人:scaleGravity = 「center_vertical | fill_horizontal」 機器人:scaleHeight = 「100%」 機器人:scaleWidth = 「80%」/> – Softlion