设为首页收藏本站

移动叔叔

搜索
查看: 1221|回复: 0
打印 上一主题 下一主题

[教程] 【小凯】状态栏时间居左教程

[复制链接]
跳转到指定楼层
楼主
发表于 2013-8-18 09:54:30 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
反编译状态栏,在文件夹SystemUIZte\res\layout找到msim_status_bar.xml这个文件,推荐使用Notepad++编辑文件首先必须要知道文件里面每一句显示的什么。知道了每句显示的是什么,这样我们就来调整它们的位置了
时间居左:
打开文件查找
  • <com.android.systemui.statusbar.policy.Clock

复制代码
找到这个,把整句
  • <com.android.systemui.statusbar.policy.Clock android:id="@id/clock" android:layout_width="wrap_content" android:layout_height="fill_parent" android:gravity="left" android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:textColor="#ffffffff" android:paddingTop="0.0dip" android:singleLine="true" android:textStyle="bold" />

复制代码
这里其中android:textColor="#ffffffff"是字体颜色,android:textStyle="bold"这个是字体的风格吧,想要官方的直接删就好了
实现时间居左就把上面那句放到
  • <LinearLayout androidrientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent">

复制代码

这句的下面就能实现时间居左了   

          不喜勿喷          教程很简单     大家可以试着做一下    不懂的地方欢迎来询问我            新人小凯



您需要登录后才可以回帖 登录 | 注册

关闭

站长推荐上一条 /1 下一条

© 2008-2025 移动叔叔. 版权所有,专业的网络售后平台 ( 闽ICP备18006692号-3 )

商务合作点击这里给我发消息|Email:service@mobileuncle.com|手机版|移动叔叔     

GMT+8, 2025-1-29 00:34 , Processed in 0.200821 second(s), 11 queries , Gzip On, Memcache On.

返回顶部