Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android手機 >> Android手機教程 >> 更多教程 >> 如何讓狀態欄時間精確到秒顯示:靠左邊、原始靠右邊

如何讓狀態欄時間精確到秒顯示:靠左邊、原始靠右邊

編輯:更多教程

教你如何將三星N7100的狀態欄時間精確到秒顯示:靠左邊、原始靠右邊。

一、狀態欄時間精確秒顯示(靠左邊)

1.首先,反編譯SystemUI.apk

2.找到文件:SystemUI.apk\res\layout\tw_status_bar.xml(推薦用Notepda+打開編輯)

3.刪除以下代碼:

android:textSize="@dimen/status_bar_clock_text_size" android:textColor="#ff959595"

android:ellipsize="none" android:gravity="left|center" android:id="@id/clock"

android:paddingLeft="3.0dip" android:layout_width="wrap_content"

android:layout_height="fill_parent" android:singleLine="true"

android:includeFontPadding="false" />

4.找到以下代碼:

android:paddingLeft="4.0dip" android:layout_width="0.0dip" android:layout_height="fill_parent"

android:layout_weight="1.0">

5.再在以上代碼後面回車添加以下代碼:

android:layout_width="wrap_content" android:layout_height="fill_parent">

android:textColor="#ff959595" android:gravity="center" android:id="@+id/digitalClock"

android:layout_width="wrap_content" android:layout_height="fill_parent"

android:singleLine="true" android:includeFontPadding="false" />

6.編輯好後保存,然後編譯SystemUI文件

7.編譯後把\res\layout\tw_status_bar.xml,和resources.arsc文件復制到原SystemUI.apk替換一下,最後再復制到手機,修改權限再重啟就可以了

#p#副標題#e#

二、狀態欄時間精確秒顯示(原始靠右邊)

1.首先,反編譯SystemUI.apk

2.找到文件:SystemUI.apk\res\layout\tw_status_bar.xml

3.找到以下代碼:

android:textSize="@dimen/status_bar_clock_text_size" android:textColor="#ff959595"

android:ellipsize="none" android:gravity="left|center" android:id="@id/clock"

android:paddingLeft="3.0dip" android:layout_width="wrap_content"

android:layout_height="fill_parent" android:singleLine="true"

android:includeFontPadding="false" />

改為:

android:textColor="#ff959595" android:gravity="center" android:id="@+id/digitalClock"

android:layout_width="wrap_content" android:layout_height="fill_parent"

android:singleLine="true" android:includeFontPadding="false" />

4.找到以下代碼:

android:paddingLeft="4.0dip" android:layout_width="0.0dip" android:layout_height="fill_parent"

android:layout_weight="1.0">

再在以上代碼後面回車添加以下代碼:

android:layout_width="wrap_content" android:layout_height="fill_parent">

5.編輯好後保存,然後編譯SystemUI文件

6.編譯後把\res\layout\tw_status_bar.xml,和resources.arsc文件復制到原SystemUI.apk替換一下,最後再復制到手機,修改權限再重啟就可以了

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved