android 应用选择器的使用

1、

AndroidManifest.xml文件中具有:

<intent-filter>
                 <action android:name="android.intent.action.SET_WALLPAPER" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>


Intent i = new Intent(Intent.ACTION_SET_WALLPAPER);
        //i.setType("text/plain");
        //i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        
        startActivity(Intent.createChooser(i, "share with ..."));


应用程序根据action查找系统中的应用程序,当然也可以加上其他信息。

2、让我们的应用程序被应用程序选择器找到。

<activity android:name=".Demo1">
            <intent-filter>
                 <action android:name="android.intent.action.SET_WALLPAPER" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。