- 浏览: 83265 次
- 性别:
- 来自: 北京
最新评论
-
zhangyf1987hb:
修改解决方案:不是在那里直接写 -ml, 而是在GCC CLi ...
eclipse c undefined reference to `sqrt'
文章列表
最近为了解决某个bug,textview中内容过长的话自动换行,但是调用measureText函数时发现返回值很不准确,单位也不确定,是pixel还是dip,都不准。后来想起textview中有个内容过长加省略号的属性,即ellipsize,可以较偷懒地解决这个问题,哈哈~
用法如下:
在xml中
android:ellipsize = "end" 省略号在结尾
android:ellipsize = "start" 省略号在开头
android:ellipsize = "middle" 省略号 ...
雾霾天气,最好佩戴口罩外出。普通、灭菌、棉布、活性炭口罩,再加上这些天在网上商城热销的N95、KN90型口罩,现在市面上有各式各样的口罩产品,那么如何选择合适的口罩呢?
雾霾天气戴什么样的口罩才管用
医生建议 ...
Android教程中自定义View的学习,对于初学着来说,他们习惯了Android传统的页面布局方式,如下代码:
Supporting Different Screens
PREVIOUSNEXT
THIS
Supporting Different Languages
PREVIOUSNEXT
THIS CLAS
[xhtml] view plaincopy
<
Loaders
IN THIS DOCUMENT
Loader API Summary
Using Loaders in an Application
Starting a Loader
Restarting a Loader
Using the LoaderManager Callbacks
Fragments
QUICKVIEW
Fragments decompose application functionality and UI into reusable modules
Add multiple fragments to a screen to avoid switching activities
Fragments have their own lifecycle, state, and back stack
Fragments require API Level 11 or greater
IN THIS DOCUMENT
Desig ...
Devices vary not only in physical size, but also in screen density (DPI). To simplify the way you design for multiple screens, think of each device as falling into a particular size bucket and density bucket. The size buckets are handset(smaller than 600dp) and tablet (larger than or equal 600dp). T ...
很多人想做一个和iphone的,其实很简单 但是很多人问
主要是修改样式和图标就好了
Xml代码
<ToggleButton
Minimal retro arcade button
Buttons
一、什么是9.png: 可能做过任务栏美化的同学都会知道,我靠,framework-res.apk\res\drawable-hdpi 目录下有非常非常多的XXXXXX.9.png图片。千万不要以为这个9只是png格式图片的命名区分,其实他是一种特殊的格式,在png图片的基础上动了些手脚,而且这种手脚你会 看不见摸不着(详情见下面具体内容)。 9.png格式的图片是安卓平台上新创的一种被拉伸却不失真的玩意(挺高级的吧),也许有 的同学在做美化的时候很喜欢一个图片素材,重命名替换了drawable-hdpi下的素材,但是运行系统后发现,怎么被拉伸得不像样子 了,哈哈, ...
Android Looper和Handler
Message:消息,其中包含了消息ID,消息处理对象以及处理的数据等,由MessageQueue统一列队,终由Handler处理。
Handler:处理者,负责Message的发送及处理。使用Handler时,需要实现handleMessage(Message msg)方法来对特定的Message进行处理,例如更新UI等。
MessageQueue:消息队列,用来存放Handler发送过来的消息,并按照FIFO规则执行。当然,存放Message并非实际意义的保存,而是将Message以链表的方式串联起来的,等待Looper的抽取。
L ...
Radio.java
[java] view plaincopy
1、Theme_Holo
意思为:New Honeycomb全屏显示样式,默认是黑背景,
api原文:
New Honeycomb holographic theme. Dark version. The widgets in the holographic theme are translucent on their brackground, so applications must ensure that any background they use with this theme is itself dark; otherwise, it will be difficult to ...