欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

定制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。

<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键,就可以得到如下的效果。
定制Android的Home
            
    
    博客分类: Android AndroidXMLBlog.netHTML 

不过如果真的定制,还需要在自己的Home应用可以调用别的应用。

如果想要真正控制用户的界面,需要采用下边链接的方法。
http://hi.baidu.com/lvqiyong/blog/item/a5410e890ed459c1fc1f10ff.html
这个需要自己编译Android,制作img。下次再研究。我还没有学会编译呢。定制Android的Home
            
    
    博客分类: Android AndroidXMLBlog.netHTML 
  • 定制Android的Home
            
    
    博客分类: Android AndroidXMLBlog.netHTML 
  • 大小: 57.1 KB