经常使用的自己定义UI组件- 一:TimeView
近期做蛋疼的机顶盒项目,以后遇到哪些经常使用的组件,记录于此。
反编译 youku视频TV偷来的。。也希望各位童鞋多学习别人的代码,为己所用。
当然还有其它的办法,比方监听系统发出的广播等等。等有时间再把那个贴上来。
效果图:右上角的时间
TimeView.java
package com.youku.tv.widget;
import android.content.Context;
import android.os.Handler;
import android.os.Message;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;
import java.util.Calendar;
import java.util.Date;
public class TimeView extends LinearLayout{
class ClockHandler extends Handler {
private void post()
{
sendMessageDelayed(obtainMessage(0), 1000 * (60 - Calendar.getInstance().get(13)));
}
public void handleMessage(Message message){
super.handleMessage(message);
if(!mStopped){
updateClock();
post();
}
}
public void startScheduleUpdate(){
mStopped = false;
post();
}
public void stopScheduleUpdate(){
mStopped = true;
removeMessages(0);
}
private boolean mStopped;
final TimeView this$0;
ClockHandler(){
super();
this$0 = TimeView.this;
}
}
public TimeView(Context context, AttributeSet attributeset){
super(context, attributeset);
mContext = getContext();
((LayoutInflater)context.getSystemService("layout_inflater")).inflate(R.layout.time_simple, this);
mHour = (TextView)findViewById(R.id.system_hour);
mMinute = (TextView)findViewById(R.id.system_minute);
mClockUpdater = new ClockHandler();
}
protected void onAttachedToWindow(){
super.onAttachedToWindow();
updateClock();
mClockUpdater.startScheduleUpdate();
}
protected void onDetachedFromWindow(){
super.onDetachedFromWindow();
mClockUpdater.stopScheduleUpdate();
}
protected void onVisibilityChanged(View view, int i)
{
super.onVisibilityChanged(view, i);
}
void updateClock()
{
Calendar calendar = Calendar.getInstance();
calendar.setTime(new Date());
int k = calendar.get(5);
int l = calendar.get(11);
int i1 = calendar.get(12);
if(mHour != null)
{
TextView textview2 = mHour;
Object aobj2[] = new Object[1];
aobj2[0] = Integer.valueOf(l);
textview2.setText(String.format("%2d:", aobj2));
}
if(mMinute != null)
if(i1 < 10)
{
TextView textview1 = mMinute;
Object aobj1[] = new Object[1];
aobj1[0] = Integer.valueOf(i1);
textview1.setText(String.format("0%d", aobj1));
} else
{
TextView textview = mMinute;
Object aobj[] = new Object[1];
aobj[0] = Integer.valueOf(i1);
textview.setText(String.format("%2d", aobj));
}
invalidate();
}
private static final String TAG = "TimeView";
private ClockHandler mClockUpdater;
private Context mContext;
private TextView mHour;
private TextView mMinute;
}
time_simple.xml布局文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@id/system_minute"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="01"
android:textColor="@color/timecolor"
android:textSize="@dimen/px42" />
<TextView
android:id="@id/system_hour"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/system_minute"
android:text="55"
android:textColor="@color/timecolor"
android:textSize="@dimen/px42" />
</RelativeLayout>
经常使用的自己定义UI组件- 一:TimeView的更多相关文章
- Atitit.web ui 组件化 vs mvc
Atitit.web ui 组件化 vs mvc 组件化 与 mvc并不矛盾..单双方适用的地方有所不同.. React推荐以组件的方式去重新思考UI构成,将UI上每一个功能相对独立的模块定 ...
- AngularJs的UI组件ui-Bootstrap分享(十二)——Rating
Rating是一个用于打分或排名的控件.看一个最简单的例子: <!DOCTYPE html> <html ng-app="ui.bootstrap.demo" x ...
- AngularJs的UI组件ui-Bootstrap分享(八)——Tooltip和Popover
tooltip和popover是轻量的.可扩展的.用于提示的指令.对于移动端来讲,这两个指令虽然可以正常工作,但是从用户体验的角度并不推荐使用. 先说tooltip,tooltip有三种使用方式: ( ...
- AngularJs的UI组件ui-Bootstrap分享(七)——Buttons和Dropdown
在ui-Bootstrap中,Buttons控件和Dropdown控件与form表单中的按钮和下拉框名字很像,但实际上这两个控件有新的含义. 先说Buttons,它是一组按钮,用来实现form表单中的 ...
- 小波说雨燕 第三季 构建 swift UI 之 UI组件集-视图集(六)Picker View视图 学习笔记
想对PickerView进行操作,只能在代码中操作. 下面 ,再添加三个label组件,然后将所有组件配置到代码中(看代码),然后要实现对PickerView的操作,就要实现它的DataSource协 ...
- Android UI组件----ListView列表控件详解
[声明] 欢迎转载,但请保留文章原始出处→_→ 生命壹号:http://www.cnblogs.com/smyhvae/ 文章来源:http://www.cnblogs.com/smyhvae/p/3 ...
- Android UI组件学习
android.view.View类是全部UI组件的父类. 如果一些属性的内容本类找不到的时候一定要到父类之中进行查找. 所谓的学习组件的过程就是一个文档的查找过程. ※ Android之中所有的组件 ...
- 第1组UI组件:布局管理器
1 布局管理的来源 为了让UI在不同的手机屏幕上都能运行良好----不同手机屏幕的分辨率/尺寸并不完全相同,如果让程序手动控制每个组件的大小.位置,会给编程带来巨大的麻烦.为了解决这个问题.andro ...
- 1.引入必要的文件 2.加载 UI 组件的方式 4.Parser 解析器
//引入 jQuery 核心库,这里采用的是 2.0 <scripttype="text/javascript"src="easyui/jquery.min.js& ...
随机推荐
- javascript基础之javascript的存在形式和js代码块在页面中的存放位置
1.存在形式 文件 如: <script src='js/jc.js'></script> 前页面 <script type='text/javascript'>a ...
- 使用Canvas实现下雪功能
示例代码: <html> <head> <meta http-equiv="Content-Type" content="text/html ...
- apache 2.4 You don't have permission to access / on this server
用的2.4版本,以前版本解决: 马上打开apache的配置文件httpd.conf,逐行检查.在大约快一半的地方有以下这段代码: <Directory /> Options Foll ...
- AJAX校验用户名是否存在,焦点离开用户名、点击 【 检 查用户名 】的校验。分别用 XMLHttp 和 JQueryAJAX实现。
XMLHttp方法: $("#name").blur(function () { var xmlhttp = new ActiveXObject("Microsoft. ...
- php锁表
用PHP实现mysql锁表 mysql锁表,是利用相关的SQL语句 //执行SQL语句 锁掉userinfo表 $sql = "LOCK TABLES userinfo WRITE" ...
- 营配数据质量核查,关于营销mis系统与配电gis系统里面的sql语句查询,做为积累使用,下次就不用重复写同样的语句了。
1.配电gis线路导出数据: select r.name 线路名称,r.run_status 运行状态,r.voltage_level 电压等级,r.manager_depart 管理部门,r.bel ...
- Php ORM 对象关系映射
ORM的全称是Object Relational Mapping,即对象关系映射.它的实质就是将关系数据(库)中的业务数据用对象的形式表示出来,并通过面向对象(Object-Oriented)的方式将 ...
- void *memmove( void* dest, const void* src, size_t count );数据拷贝,不需要CPU帮助
分享到 腾讯微博 QQ空间 新浪微博 人人网 朋友网 memmove 编辑词条 编辑词条 --> memmove用于从src拷贝count个字符到dest,如果目标区域和源区域有重叠的话,m ...
- 【回忆1314】第一次用AngularJS
1.创建指令的4种方式(ECMA) var appModule = angular.module('app', []); appModule.directive('hello', function() ...
- JQUERY1.9学习笔记 之层级选择器(四)
下一个邻居选择器(“prev ~ siblings”) 描述:选择所有"prev"后的邻居选择器,他们有相同的父节点. 注意:prev + next 与 prev ~ siblin ...