码迷,mamicode.com
首页 > 移动开发 > 详细

android 应用选择器的使用

时间:2015-03-10 19:47:08      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:android   应用程序   action   信息   share   

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>

android 应用选择器的使用

标签:android   应用程序   action   信息   share   

原文地址:http://cbg23.blog.51cto.com/7201812/1618910

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!