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 - MPAndroidChart - How to add Annotations or images to the chart -

javascript - Add class to another page attribute using URL id - Jquery -

firefox - Where is 'webgl.osmesalib' parameter? -