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..

enter image description here

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

Popular posts from this blog

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -