代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
android 状态栏修改
作者:
曾君
/ 发布于
2012/8/13
/
764
<div>Android状态栏定制和修改2011年07月04日 星期一 21:25大家都知道定制在android开发中的重要性,因为通过定制,你才能制造出差异化的产品,才能满足更多消费者的需求, 像HTC生产的手机都通过了深层次的二次开发,今天我也来分享一下我的状态栏定制。 废话不说了,直接上图:</div> <div> 主要更换了背景,文字颜色以及icon的显示顺序. 2. 关键代码部分 a) 代码在系统中的位置 status bar 的相关代码位于:frameworks\base\services\java\com\android\server\status。 其中StatusBarPolicy类主要负责接收action动作,其他一些核心操作全部位于StatusBarService类里面 b) 代码实例: i. 接收action if (action.equals(Intent.ACTION_BATTERY_CHANGED)) { updateBattery(intent); } ii. 更新icon private final void updateBattery(Intent intent) { mBatteryData.iconId = intent.getIntExtra("icon-small", 0); mBatteryData.iconLevel = intent.getIntExtra("level", 0); mService.updateIcon(mBatteryIcon, mBatteryData, null); } c) 资源位置: Status bar 的相关资源位于:frameworks\base\core\res\res,关键布局为:base/core/res/res/layout/status_bar.xml ,源码如下:重要的是红色字体标注部分,这里可以设置notification字体颜色。 <com.android.server.status.StatusBarView xmlns:android="<a href="http://schemas.android.com/apk/res/android">http://schemas.android.com/apk/res/android</a>" android:background="@drawable/statusbar_background" android:orientation="vertical" android:focusable="true" android:descendantFocusability="afterDescendants" ></div> <div><LinearLayout android:id="@+id/icons" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"></div> <div><com.android.server.status.IconMerger android:id="@+id/notificationIcons" android:layout_width="0dip" android:layout_weight="1" android:layout_height="match_parent" android:layout_alignParentRight="true" android:paddingLeft="6dip" android:gravity="center_vertical" android:orientation="horizontal"/></div> <div><LinearLayout android:id="@+id/statusIcons" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_alignParentLeft="true" android:paddingRight="6dip" android:gravity="center_vertical" android:orientation="horizontal"/> </LinearLayout></div> <div><LinearLayout android:id="@+id/ticker" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingLeft="6dip" android:animationCache="false" android:orientation="horizontal" > <ImageSwitcher android:id="@+id/tickerIcon" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_marginRight="8dip" > <com.android.server.status.AnimatedImageView android:layout_width="25dip" android:layout_height="25dip" /> <com.android.server.status.AnimatedImageView android:layout_width="25dip" android:layout_height="25dip" /> </ImageSwitcher> <com.android.server.status.TickerView android:id="@+id/tickerText" android:layout_width="0dip" android:layout_weight="1" android:layout_height="wrap_content" android:paddingTop="2dip" android:paddingRight="10dip"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:singleLine="true" android:textColor="#[color=Magenta]ff000000[/color]" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:singleLine="true" android:textColor="#[color=Magenta]ff000000[/color]" /> </com.android.server.status.TickerView> </LinearLayout </div>
试试其它关键字
状态栏修改
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
曾君
贡献的其它代码
(
1
)
.
android 状态栏修改
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3