
随笔随记
文章平均质量分 53
iteye_20406
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
TextView跑马灯效果
<TextView android:layout_width="100px" android:layout_height="wrap_content" android:textColor="@android:color/white" android:ellipsize="marquee" android:f...原创 2015-01-04 17:28:53 · 116 阅读 · 0 评论 -
Java中计算两个时间差(精确到毫秒)
转自:http://blog.csdn.net/xue1225go/article/details/4363629 SimpleDateFormat dfs = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS"); long between = 0; try { java.util...原创 2015-03-09 16:04:44 · 5731 阅读 · 0 评论 -
android设置按钮背景透明度与设置布局背景图片的透明度
Button或者ImageButton的背景设为透明或者半透明半透明<Button android:background="#e0000000" ... /> 透明<Button android:background="#00000000" ... />颜 色和不透明度 (alpha) 值以十六进制表示法表示。任何一种颜色的值范围都是 0 到 255(00 到 f...原创 2015-03-12 10:26:26 · 1082 阅读 · 0 评论 -
时间格式 各种转换
/** * 获取现在时间 * * @return 返回时间类型 yyyy-MM-dd HH:mm:ss */public static Date getNowDate() { Date currentTime = new Date(); SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-...原创 2015-03-13 13:01:47 · 170 阅读 · 0 评论