摘要: 首先我们通过一个button进行一下测试,可以知道:public class Res extends Activity implements View.OnTouchListener { Button btn = null; int x = 0; int y = 0; int rawx = 0; int rawy = 0; /** Called when the activity is first created. */ @Override public void onCreate(Bundle saved... 阅读全文
posted @ 2013-04-27 18:24 似水流云 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 一个小问题,给TextView添加Onclick事件还需要配置android:clickable="true",否则点击无效。 android:id="@+id/tvTab1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:background="@drawable/deepGrey" android:click 阅读全文
posted @ 2013-04-27 14:59 似水流云 阅读(441) 评论(0) 推荐(1) 编辑
摘要: Android中常常使用shape来定义控件的一些显示属性,今天看了一些shape的使用,对shape有了大体的了解,稍作总结: 其中shape中有四个可选要素 android:shape="rectangle" 表示矩形 android:shape="line" 表示线形(一般不怎么用) andr 阅读全文
posted @ 2013-04-27 14:23 似水流云 阅读(214) 评论(0) 推荐(0) 编辑