Android 2.3状态栏中添加menu,home和back快捷键的方.docVIP

  • 2
  • 0
  • 约1.84万字
  • 约 13页
  • 2017-05-12 发布于河南
  • 举报

Android 2.3状态栏中添加menu,home和back快捷键的方.doc

Android 2.3状态栏中添加menu,home和back快捷键的方

在Android 2.3状态栏中添加menu,home和back快捷键的方法 1、准备资源,修改XML文 准备几张图,这里我们准备添加home back和menu图标,就需要准备6张图,三张普通状态,三张按下的高亮状态图标: stat_home.png stat_home_pressed.png stat_back.png stat_back_pressed.png stat_menu.png stat_menu_pressed.png 把它们放在frameworks/base/packages/SystemUI/res/drawable/目录下 同时,在frameworks/base/packages/SystemUI/res/drawable 下创建三个imageButton的xml文件 xml_stat_home.xml 1.????? ?xml?version=1.0?encoding=utf-8???? 2.????? selector??? 3.????? ????xmlns:android=/apk/res/android??? 4.????? ????item??? 5.????? ????????android:state_focused=true??? 6.????? ????????android:state_pressed=false??? 7.????? ????????android:drawable=@drawable/stat_home?/??? 8.????? ????item??? 9.????? ????????android:state_focused=true??? 10.?? ????????android:state_pressed=true??? 11.?? ????????android:drawable=@drawable/stat_home_pressed?/??? 12.?? ????item??? 13.?? ????????android:state_focused=false??? 14.?? ????????android:state_pressed=true??? 15.?? ????????android:drawable=@drawable/stat_home_pressed?/??? 16.?? ????item??? 17.?? ????????android:drawable=@drawable/stat_home?/??? 18.?? /selector? ?xml_stat_back.xml 1.????? ?xml?version=1.0?encoding=utf-8???? 2.????? selector??? 3.????? ????xmlns:android=/apk/res/android??? 4.????? ????item??? 5.????? ????????android:state_focused=true??? 6.????? ????????android:state_pressed=false??? 7.????? ????????android:drawable=@drawable/stat_back?/??? 8.????? ????item??? 9.????? ????????android:state_focused=true??? 10.?? ????????android:state_pressed=true??? 11.?? ????????android:drawable=@drawable/stat_back_pressed?/??? 12.?? ????item??? 13.?? ????????android:state_focused=false??? 14.?? ????????android:state_pressed=true??? 15.?? ????????android:drawable=@drawable/stat_back_pressed?/??? 16.?? ????item??? 17.?? ????????android:drawable=@drawable/stat_back?/??? 18.?? /selector??? xml_stat_menu.xml 1.????? ?xml?version=1.0?encoding=utf-8???? 2.????? selector??? 3.????? ????xmlns:android=/apk/res/android??? 4.????? ????item??? 5.????? ????????android

文档评论(0)

1亿VIP精品文档

相关文档