前に、私のアプリが最初に起動したときに、白い画面がありました。だから私はのstyles.xmlは黒色の背景とスタイルを作成し、私のマニフェストにそれを参照:スタイルでImageViewを表示するにはどうすればいいですか?
<activity
android:name=".InitialScreen"
android:theme="@style/Theme.Transparent"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
のstyles.xml:
<style name="Theme.Transparent" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:background">#000</item>
</style>
黒い画面が正常に表示さ、どのように私はImageViewのを表示することができますこのスタイルで?