学习安卓布局前,先了解三个属性值:1、fill_parent: 设置一个构件的布局为fill_parent将强制性地使构件扩展,以填充布局单元内尽可能多的空间2、match_parent: Android2.2中match_parent和fill_parent是一个意思 .两个参数意思一...
分类:
移动开发 时间:
2014-10-29 00:09:54
阅读次数:
316
这两个是按钮开关,监听CheckedChangeListener
toggle_layout.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match...
分类:
移动开发 时间:
2014-10-20 11:46:59
阅读次数:
245
加一个红色的边框:
textView的XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orienta...
分类:
移动开发 时间:
2014-10-17 13:54:32
阅读次数:
275
效果:
1.自定义titleBar的布局。
android:layout_width="match_parent"
android:layout_height="match_parent" >
android:id="@+id/tv_SongsCount"
android:layout_widt...
分类:
其他好文 时间:
2014-10-17 13:52:21
阅读次数:
203
效果:
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="vertical" >
android:lay...
分类:
移动开发 时间:
2014-10-16 12:58:12
阅读次数:
175
一、关于布局适配1、不要使用绝对布局2、尽量使用match_parent 而不是fill_parent 。3、能够使用权重的地方尽量使用权重(android:layout_weight)4、如果是纯色背景,尽量使用android的shape 自定义。5、如果需要在特定分辨率下适配,可以在res目录上...
分类:
移动开发 时间:
2014-10-15 19:46:11
阅读次数:
253
最近在工作中遇到了这样一个问题,使用一个GridView展示数据,item中只是一个TextView,但是里面显示的文字多少不固定多少,必须全部展示出来.
遇到的问题:
1.把item中的宽和高设置match_parent,还是设置成wrap_content,当内容过多的时候,会覆盖下一行的显示的内容.
2.没有一个属性可以给GridView设置行高,那么高度就不能控制.
遇到的问题展...
分类:
其他好文 时间:
2014-10-15 16:12:01
阅读次数:
292
表格布局最主要的三个属性:
XML代码实例:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orie...
分类:
移动开发 时间:
2014-10-14 18:38:49
阅读次数:
209
有网友表示对于很多工程中的MATCH_PARENT出现在layout中感到不明白,过去只有FILL_PARENT和WRAP_CONTENT那么match_parent到底是什么类型呢? 其实从Android 2.2开始FILL_PARENT改名为MATCH_PARENT ,从API Level为8开...
分类:
其他好文 时间:
2014-10-13 18:14:59
阅读次数:
176
xml文件:
<ListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:cacheColorHint="#0...
分类:
移动开发 时间:
2014-09-30 20:40:20
阅读次数:
328