摘要: 1、它的各种示例:http://blog.csdn.net/cike110120/article/details/46572071 2、它的讲解:http://www.androidchina.net/1381.html 3、基本介绍:http://wiki.jikexueyuan.com/proj 阅读全文
posted @ 2016-07-12 17:25 zhongyinghe 阅读(191) 评论(0) 推荐(0)
摘要: 1、android:scrollbarStyle 定义滚动条的样式和位置 参考:http://www.trinea.cn/android/android-scrollbarstyle/ 2、android:cacheColorHint 原文ListView是常用的显示控件,默认背景是和系统窗口一样的 阅读全文
posted @ 2016-07-12 15:56 zhongyinghe 阅读(164) 评论(0) 推荐(0)
摘要: 1、如果只是是3-4个线性,则可以考虑RelativeLayout;多于等于5个还是尽量考虑LinearLayout好 补充:如果要把RelativeLayout作为线性布局的话,可以采用不断设置below方式进行线性布局 2、关于above、below、toLeft和toRight,设置里面的对象 阅读全文
posted @ 2016-07-12 15:18 zhongyinghe 阅读(192) 评论(0) 推荐(0)
摘要: 1、 android:layout_below="@+id/first" //在某元素的的下方; android:layout_alignBottom="@+id/first"//本元素的下边缘和某元素的的下边缘对 阅读全文
posted @ 2016-07-12 11:34 zhongyinghe 阅读(144) 评论(0) 推荐(0)