android4.0 修改语言,主菜单背景修改!

来源:互联网 发布:java初学难点 编辑:程序博客网 时间:2024/05/29 12:20

1

/android4.0/build/target/product/languages_full.mk

/android4.0/build/target/product/languages_small.mk

2

/android4.0/packages/apps/Launcher2/res/drawable-hdpi/mainmenu_bg.jpg

/android4.0/packages/apps/Launcher2/res/drawable-mdpi/mainmenu_bg.jpg

/android4.0/packages/apps/Launcher2/res/drawable-xhdpi/mainmenu_bg.jpg

/android4.0/packages/apps/Launcher2/res/layout/apps_customize_pane.xml

<com.android.launcher2.AppsCustomizeTabHost
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"
    android:background="@drawable/apps_customize_bg">
    <!--android:background="#FF000000"-->
修改为:

<com.android.launcher2.AppsCustomizeTabHost
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"
    android:background="@drawable/mainmenu_bg">
    <!--android:background="#FF000000"-->

原创粉丝点击