06 2014 档案

摘要:mListView.setSelectionFromTop(position, y);利用上述方法设置Item在ListView中的位置。y为Item距离ListView顶端的距离,也就是图中的1;计算方式:1 = 2 - 3 -4坐标计算:int[] location = new int[2];v... 阅读全文
posted @ 2014-06-06 12:03 x-dev 阅读(997) 评论(2) 推荐(1)
摘要:public final intgetMeasuredHeight()Added inAPI level 1LikegetMeasuredHeightAndState(), but only returns the raw width component (that is the result is... 阅读全文
posted @ 2014-06-04 11:40 x-dev 阅读(5636) 评论(0) 推荐(0)
摘要:"invisible" : 不可见"gone" : 隐 藏主要区别在于控件设置了invisible后控件不可见,但是保留了控件在界面上的空间,而设置为gone,则不保留控件占有的空间。test.xml 效果:invisible.xml 效果:gone.xml ... 阅读全文
posted @ 2014-06-03 16:42 x-dev 阅读(2654) 评论(0) 推荐(1)
摘要:之前做按钮的点击事件一直没有注意一些细节,今天做了一个按钮需要有点击和长点击触发不同效果,直接让Activity implements OnClickListener, OnLongClickListener然后添加了相应的处理函数。 @Override public void onC... 阅读全文
posted @ 2014-06-03 14:18 x-dev 阅读(4597) 评论(0) 推荐(0)