一、fill_parent、match_parent、wrap_content的区别: 1. fill_parent:将强制性地使构件扩展,以填充布局单元内尽可能多的空间。 2. wrap_content:将强制性地使视图扩展以显示全部内容,大体等同于设置 Window...
分类:
移动开发 时间:
2014-12-05 15:40:58
阅读次数:
227
<?xml?version="1.0"?encoding="utf-8"?>
<LinearLayout?xmlns:android="http://schemas.android.com/apk/res/android"
????android:layout_width="match_parent"
????android:layout_height="40dp"
...
分类:
微信 时间:
2014-11-26 21:03:49
阅读次数:
407
本质是通过复用控件达到性能优化。
1、通过
被复用控件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:o...
分类:
移动开发 时间:
2014-11-24 15:29:28
阅读次数:
232
1、创建xml文件及按钮
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:id="@+id...
分类:
其他好文 时间:
2014-11-21 23:28:42
阅读次数:
368
1、创建xml文件及按钮
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:id="@+id...
分类:
其他好文 时间:
2014-11-21 23:27:21
阅读次数:
417
1、创建xml文件及按钮
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:id="@+id...
分类:
其他好文 时间:
2014-11-21 23:27:10
阅读次数:
319
1、创建xml文件及按钮
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:id="@+id...
分类:
其他好文 时间:
2014-11-21 23:27:09
阅读次数:
279
测试结果如下:
* wrap_parent -> MeasureSpec.AT_MOST
* match_parent -> MeasureSpec.EXACTLY
* 具体值 -> MeasureSpec.EXACTLY
一个 view 的 onMeasure 方法最终得到的测量规格值(测量约束值)中包含的测量模式和上面不一定对的上,这是因为 onMeasure 方法中得到的测...
分类:
其他好文 时间:
2014-11-21 20:36:22
阅读次数:
172
昨天有一个zTree的使用者在实际的项目中有着这样一个特殊的需求,要求同级树节点能够水平显示,根据设定的宽度自动换行,效果图如下所示: 通过在浏览器调试模式下观察其同级节点的css为: li { display: list-item; text-align: -webkit-match-parent...
分类:
其他好文 时间:
2014-11-21 15:39:20
阅读次数:
713
一个demo,在xml布局中,某一行的高度为其他行的一半。之前用layout_weight,得出的效果也不太理想。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_...
分类:
移动开发 时间:
2014-11-19 14:16:01
阅读次数:
243