首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Iphone >

自各儿写仿iPhone的Launcher

2012-07-02 
自己写仿iPhone的Launcher占楼1.快速选择不同的Launcher,前提是不能有Default LauncherIntent i new Int

自己写仿iPhone的Launcher
占楼

1.
快速选择不同的Launcher,前提是不能有Default Launcher

Intent i = new Intent(Intent.ACTION_MAIN);i.addCategory(Intent.CATEGORY_HOME);startActivity(i);

模拟器上按Home键也可以达到相同的效果。

2.
Launcher的intent filter
<intent-filter><action android:name="android.intent.action.MAIN" /><category android:name="android.intent.category.HOME" /><category android:name="android.intent.category.DEFAULT" /></intent-filter>


3. 附件Launcher-Study为Android原生Launcher的代码,修改了一部分

热点排行