我制作RN应用程序。对于Android版本我已经 /drawable/splash_screen.xml与以下内容如何使用svg而不是png实现Android启动画面?
android:drawable="@color/gray"/>
android:gravity="center"
android:src="@mipmap/ic_launcher"/>
,并链接到本文件在res /价值/ styles.xml
@drawable/splash_screen
也AndoirdManifest.xml
android:name=".MainApplication"
android:allowBackup="true"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/SplashTheme"
android:screenOrientation="landscape"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
2017-03-04
CodeBy
+0
我试着用可绘制的比例尺,但它的默认级别是0,不能在可绘制的xml中设置。这是一个耻辱,因为这将是解决方案。 –