level 8
同名YD
楼主
电池百分比显示教程 : 反编译 SystemUI.apk
打开SystemUI\res\layout\status_bar.xml
搜索 <ImageView android:id="@id/battery" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" />
修改为 <ImageView android:id="@id/battery" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_centerInParent="true" />
这段下面的一段是字体大小 <TextView android:textSize="8.5dip"
修改8.5 为你喜欢的大小
(这是去电池图标的,而不去电量百分比图标反编译教程。)
2013年03月01日 16点03分
1
打开SystemUI\res\layout\status_bar.xml
搜索 <ImageView android:id="@id/battery" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" />
修改为 <ImageView android:id="@id/battery" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_centerInParent="true" />
这段下面的一段是字体大小 <TextView android:textSize="8.5dip"
修改8.5 为你喜欢的大小
(这是去电池图标的,而不去电量百分比图标反编译教程。)
