定制Android的Home 博客分类: Android AndroidXMLBlog.netHTML
程序员文章站
2024-03-16 10:06:46
...
接到任务去调查如何定制Android的Home,在网上查了一下资料。本来以为很难的,但是居然只是简单的修改manifest.xml文件。参考http://blog.csdn.net/sijiangong/archive/2009/08/12/4440037.aspx,只要把 android.intent.category.LAUNCHER 改为 android.intent.category.HOME,居然就可以把程序变成Home。
试着把HelloWorld改了一下,在启动模拟器后,单机Home键,就可以得到如下的效果。
不过如果真的定制,还需要在自己的Home应用可以调用别的应用。
如果想要真正控制用户的界面,需要采用下边链接的方法。
http://hi.baidu.com/lvqiyong/blog/item/a5410e890ed459c1fc1f10ff.html
这个需要自己编译Android,制作img。下次再研究。我还没有学会编译呢。
<application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".MyHome" android:label="@string/app_name"> <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> </activity> </application>
试着把HelloWorld改了一下,在启动模拟器后,单机Home键,就可以得到如下的效果。
不过如果真的定制,还需要在自己的Home应用可以调用别的应用。
如果想要真正控制用户的界面,需要采用下边链接的方法。
http://hi.baidu.com/lvqiyong/blog/item/a5410e890ed459c1fc1f10ff.html
这个需要自己编译Android,制作img。下次再研究。我还没有学会编译呢。
推荐阅读
-
定制Android的Home 博客分类: Android AndroidXMLBlog.netHTML
-
定制Android的Home 博客分类: Android AndroidXMLBlog.netHTML
-
Android shape中的padding无效 博客分类: Android
-
Android shape中的padding无效 博客分类: Android
-
[原创] 使用 Vitamio 播放视频作为 Splash 时出现失真情况的解决方案 博客分类: Android androidvideovitamiosplash
-
LayoutInflater和inflate()方法的用法 博客分类: android androidLayoutInflater
-
android的用户定位---location使用 博客分类: android androidloationManagergps
-
广播机制的2种注册方式 博客分类: android android广播机制
-
Android开发打造万能的适配器 博客分类: Android UI 界面 AndroidBaseAdapter模版面向对象
-
Android home键和back键区别 博客分类: android androidhomeback