ライブ壁紙を作成したのですが、プログラム リストに表示できません。ホーム画面を長押しすると壁紙一覧にのみ壁紙が表示されます。
壁紙リストと番組リストの両方の画面に壁紙を表示する方法はありますか?
マニフェストでインテント フィルターアクション android:name="android.intent.action.MAIN" />を設定してみましたが、壁紙は比較されません。
<activity
android:name="Preferences"
android:label="@string/description"
android:theme="@android:style/Theme.WallpaperSettings"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.PREFERENCE" />
</intent-filter>
</activity>
両方の画面に壁紙を表示するには、マニフェスト ファイルで何を使用すればよいですか?