0
내 라이브 배경에는 아이콘이 있습니다. 설치하기 전에 표시되지만 설치하고 배경 화면> 라이브 배경 화면으로 이동하면 아무 아이콘도 표시되지 않고 그냥 비어 있습니다. 회색 이미지입니다. 내 라이브 배경 화면에는 아이콘이 있지만 설치하기 전에 표시되지만 설치 후 배경 무늬> 라이브 배경 화면으로 이동하면 아이콘이 표시되지 않고 단지 빈 회색 이미지입니다. 내가 이해에서 라이브 배경 화면에 대 한 아이콘의 다른 종류가 있습니다라이브 배경에 아이콘을 추가하는 방법
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
android:versionName="1.0" package="com.cutecats.cats"
android:versionCode="1">
<uses-sdk android:minSdkVersion="8" />
<uses-feature android:name="android.software.live_wallpaper" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name">
<service
android:name=".CubeWallpaper1"
android:icon="@drawable/icon"
android:permission="android.permission.BIND_WALLPAPER">
<intent-filter android:icon="@drawable/icon">
<action android:name="android.service.wallpaper.WallpaperService" />
</intent-filter>
<meta-data android:name="android.service.wallpaper" android:resource="@xml/cube1" />
</service>
<activity
android:label="@string/cube2_settings"
android:name=".CubeWallpaper1Settings"
android:icon="@drawable/icon"
android:exported="true" >
</activity>
</application>
</manifest>
아마도 너무 늦었 겠지만 다른 사람에게 도움이된다면 지금 알려주세요. – Alehar