蚕豆的蚕豆 赵庆磊1234
印度特色(伟哥)都有货红钻蓝钻蓝蝌蚪等等等等
关注数: 229 粉丝数: 280 发帖数: 3,448 关注贴吧数: 62
在状态栏添加图片 打开res/layout/status_bar.xml 然后在 <com.android.systemui.statusbar.phone.CarrierLabel  android:textAppearance="@style/TextAppearance.StatusBar.Clock"  android:gravity="left|center" android:id="@id/carrier"  android:layout_width="wrap_content" android:layout_height="fill_parent"  android:singleLine="true" />复制代码这一句的上面一行,添加一个图片指定 <ImageView android:layout_gravity="center"  android:layout_width="wrap_content" android:layout_height="fill_parent"  android:src="@drawable/123" /> 添加完了后,我们要隐藏原来的运营商  最简单的办法是将运营商的大小设置一下,我们先更改他的布局方式  <com.android.systemui.statusbar.phone.CarrierLabel 这个开头的就是运营商的代码,在这一行后面找 MIUI里面原先应该是 android:gravity="left|center"复制代码改成 android:gravity="center"  复制代码再将<com.android.systemui.statusbar.phone.CarrierLabel  开头的这一行中的 android:layout_width="wrap_content"  android:layout_height="fill_parent"复制代码改成 android:layout_width="0.1dip" android:layout_height="0.1dip"  然后找一个运营商图片png格式  命名为123.png 放到res/drawable-hdpi文件夹 回编译即可,回编译后  记得在原来的状态栏中加入123.png这个图片,然后替换系统状态栏就可以了 这样以后在你的主题状态栏中加入123.png 也是可以达到主题替换运营商的效果了。
安卓美化教程之状态栏显示运营商 安卓美化教程之状态栏显示运营商 反编译SystemUI.apk 修改\res\layout\status_bar.xml 在<LinearLayout android:orientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent">下 添加如下代码: <com.android.systemui.statusbar.CarrierLabel android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:gravity="left|center" android:paddingLeft="6.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" /> 复制代码 具体如下: <LinearLayout android:orientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent"> <com.android.systemui.statusbar.CarrierLabel android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:gravity="left|center" android:paddingLeft="6.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" /> <com.android.systemui.statusbar.IconMerger android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/notificationIcons" android:paddingLeft="6.0dip" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0" android:layout_alignParentLeft="true" /> <LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/statusIcons" android:paddingRight="1.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true" /> 复制代码 回编译!
教你修改简单触摸(iPhone小白点)的即时显示图标!悬浮 是不是有正版的iPhone白点?然后不能更换别的皮肤?更换别的皮肤需要积分?你嫌麻烦?不要怕,有我在,什么都是浮云,好了,不废话,教程开始 首先,你要拥有一款re管理器,其次你要有iPhone小白点软件(没有的用户可以去下载一个,不大,1.3m),然后用re管理器长按iPhone小白点软件,选择全部提取(或者全部解压(一个意思不同手机可能显示不一样)),然后提取(解压)完跳转到那个文件夹,进入那个文件夹依次是res/drawable-hdpi,好了,既然来到这个文件夹了,你会发现什么?你看到iPhone白点了,不要惊讶,就是这么简单 btn_assistivetouch.png这个图片是始终漂浮在屏幕的图片, btn_assistivetouch_pressed.png这个图片是按上去的效果,把这两个图片和自己喜欢的两个图片替换一下(这里说一下替换的这是什么意思,有的人会不懂,当然所谓的替换就是把原来的文件名字复制下来,然后粘贴到你要修改文件的名字里(粘贴时要删除原图片,不然会提示存在同名文件,无法更改)),然后移动到提供给你的文件夹,到这里我们就快完工了,但是……还差一点,继续看,长按你刚才解压(提取)的这个大文件夹,然后选择创建Zip文件,创建完成后跳转到前往Zip目录,把那个压缩包进行重命名,把Zip改成apk后确认,安装即可,别看我写的这么多,其实非常简单!我就是怕你们不懂!好了今天就到这里! 欢迎加我QQ493684605 官方美化QQ群294113513 官方网站http://tieba.baidu.com/mo/q/checkurl?url=http%3A%2F%2Fwww.andmh.com&urlrefer=9cd82ba00515e81220ffab85bbe3c24a _______________________________欢迎您的加入
首页 1 2 3 下一页