如何反编译我就不说了 有关的帖子我已经发过了 还不懂就去百度
首先反编译UI,然后找到res/values/bools.xml
搜索
<bool name="config_recents_thumbnail_image_fits_to_xy">false</bool 将false改为true
找到 /res/values/strings.xml
最后一行添加
<string name="recent_apps_title">Recent apps</string>
找到values-zh-rCN/strings.xml
<string name="recent_apps_title">自定义中文名</string>
第三步 找到 /res/layout/status_bar_no_recent_apps.xml
在<TextView android:textSize="20.0dip" 后面改为android:textColor="@*android:color/white"
第四步 找到 /res/layout/status_bar_expanded_header.xml
将<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:background="@drawable/notification_header_bg" android:layout_width="fill_parent" android:layout_height="wrap_content" android:baselineAligned="false"
改为:<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:background="#ff000000" android:layout_width="fill_parent" android:layout_height="wrap_content" android:baselineAligned="false"
替换layout-land layout-port中的status_bar_recent_panel.xm与status_bar_recent_item.xml
制作两个背景图片,名称改为:wp8_land 和wp8_port大小自定,放到drawable-nodpi文件夹下既可
然后反编译 framework-res.apk
/res/values/dimens.xml
<dimen name="thumbnail_height">267.0dip</dimen> 有的分辩率不同可自定义高度
<dimen name="thumbnail_width">168.0dip</dimen> 有的分辩率不同可自定义宽度
最后回编译 替换什么的就不说了
首先反编译UI,然后找到res/values/bools.xml
搜索
<bool name="config_recents_thumbnail_image_fits_to_xy">false</bool 将false改为true
找到 /res/values/strings.xml
最后一行添加
<string name="recent_apps_title">Recent apps</string>
找到values-zh-rCN/strings.xml
<string name="recent_apps_title">自定义中文名</string>
第三步 找到 /res/layout/status_bar_no_recent_apps.xml
在<TextView android:textSize="20.0dip" 后面改为android:textColor="@*android:color/white"
第四步 找到 /res/layout/status_bar_expanded_header.xml
将<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:background="@drawable/notification_header_bg" android:layout_width="fill_parent" android:layout_height="wrap_content" android:baselineAligned="false"
改为:<LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:background="#ff000000" android:layout_width="fill_parent" android:layout_height="wrap_content" android:baselineAligned="false"
替换layout-land layout-port中的status_bar_recent_panel.xm与status_bar_recent_item.xml
制作两个背景图片,名称改为:wp8_land 和wp8_port大小自定,放到drawable-nodpi文件夹下既可
然后反编译 framework-res.apk
/res/values/dimens.xml
<dimen name="thumbnail_height">267.0dip</dimen> 有的分辩率不同可自定义高度
<dimen name="thumbnail_width">168.0dip</dimen> 有的分辩率不同可自定义宽度
最后回编译 替换什么的就不说了