Home » Thủ Thuật - Android » Thêm text (chữ) hoặc hình ảnh (picture) vào Statusbar
Thêm text (chữ) hoặc hình ảnh (picture) vào Statusbar ★ Bài Viết : Thêm text (chữ) hoặc hình ảnh (picture) vào Statusbar
★ Đăng Bởi :Vương Thành Hiệp
★ Ngày Đăng : Chủ Nhật, 1 tháng 3, 2015 lúc 21:16
★ Chuyên Mục:
a/. Thêm text:
UnHidden Content:

Vào thư mục ……SystemUI\res\layout tìm và mở file strings.xml thêm vào dưới dùng đoạn code dưới đây để khai báo chuỗi text
PHP:
<string name="mytext">[Text (chữbạn muốn hiển thị]</string>
[​IMG]

Save file và đóng file này lại.

Tiếp tục Vào thư mục ……SystemUI\res\layout tìm và mở file asus_status_bar.xml thêm vào đoạn code dưới đây vào vị trí bạn muốn thêm vào.
PHP:
<TextView android:textSize="18.0dip" android:textColor="#ffffffff" android:gravity="center_vertical" android:layout_width="wrap_content" android:layout_height="fill_parent" android:text="@string/mytext" android:singleLine="true" />
P/s:
- Điều chỉnh độ lớn nhỏ của chữ thì các bạn sửa tăng hoặc giảm giá trị dip nhé android:textSize="18.0dip"
- Điều chỉnh màu của chữ thì các bạn sửa giá trị #ffffffff trong code android:textColor="#ffffffff"
Các bạn có thể vào photoshop để lấy mã màu hex gồm 6 ký tự thay vào 6 chữ f sau cùng.

b/. Thêm ảnh (picture): 

UnHidden Content:

Vào thư mục ……SystemUI\res\layout tìm và mở file asus_status_bar.xml thêm vào đoạn code dưới đây vào vị trí bạn muốn thêm vào.

PHP:
<TextView android:background="@drawable/mypicture" android:gravity="center_vertical" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
Sau đó tạo 1 ảnh bạn thích lưu với tên là mypicture.png và chép vào thư mục theo từng loại Zenfone tương ứng nhé:
- Zenfone 4; Zenfone 4.5: icon nằm trong thư mục drawable-hdpi
- Zenfone 5; Zenfone 6: icon nằm trong thư mục drawable-xhdpi

P/s:

- File ảnh chép vào phải là định dạng .png
Nguồn : ZenphoneViet 
Chia sẻ với bạn bè bài viết tuyệt vời này nhé
Share to Facebook Share to Twitter Share to Google+ Share to Stumble Upon Share to Evernote Share to Blogger Share to Email Share to Yahoo Messenger More...
Từ khóa: Thêm text (chữ) hoặc hình ảnh (picture) vào Statusbar