android - How to add item in Setting->Display->Wallpaper->Choose wallpaper from? -
i want add item in setting->display->wallpaper->choose wallpaper from.
how , please tell me,thanks..

that list of activities, first ensure have created activity entry point app list.
then, open androidmanifest.xml , add following <intent-filter> activity want listed:
<activity android:label="@string/activity_label" ...> <intent-filter> <action android:name="android.intent.action.set_wallpaper" /> <category android:name="android.intent.category.default" /> </intent-filter> </activity> the text of added item label of activity (android:label="@string/activity_label")
Comments
Post a Comment