this link に続いて、SplashActivityを作成して、MainActivityを読み込んでいるときに小さなアイコンを表示しました。 Everythinkは正常に動作し、アイコンを正常に実装できました。今SplashActivityのアイコンを変更しようとしていますが、デバイスのアプリケーションアイコンが更新されていないという問題があります。コード内で変更されたすべてのものが更新され、テーマが期待されます。スプラッシュテーマはもう変更されていません
window_background.xml:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
android:opacity="opaque">
<item android:drawable="@color/white"/>
<item>
<bitmap
android:src="@drawable/logo"
android:gravity="center"/>
</item>
</layer-list>
のstyles.xml:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.LauncherTheme">
<item name="android:windowBackground">@drawable/window_background</item>
</style>
のAndroidManifest.xml:私はほとんどのコードを更新するためにすべてを試み
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity android:name=".SplashActivity"
android:theme="@style/AppTheme.LauncherTheme"
android:screenOrientation="sensorPortrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
...
</application>
(クレアプロジェクトの再構築、キャッシュの無効化、Androidスタジオの再起動、デバイス上のアプリケーションの削除など)、デバイス上でテーマが正しく動作していない場合、他のすべてが機能します。
誰にも正しいテーマを表示する方法はありますか?
EDIT: 私はテーマがまだそこにあるmainfestファイルからテーマを削除しても...
EDIT 2: 私は現在表示されたアイコンがどの標準ic_launcherのアイコンであることを考え出しました中央に中心が置かれています。したがって、window_background.xmlはテーマから完全に無視されていますが、私はまだその理由を知りません。 AppTheme.LauncherThemeの親として別のテーマを設定しようとしましたが、何も変わりません。 AppTheme.LauncherThemeを削除すると、SplashActivityはemtpyになり、ic_launcherアイコンは削除されます。
AppTheme.LauncherThemeには、window_background.xmlというドロアブルがあります。それは正しいですか? – DroidBender
もちろんそれは私のせいです。質問を更新します! – RyuZz