activity_main.xml<?xmlversion="1.0"encoding="utf-8"?><TableLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"><TableLayout><TextViewandroid:id="@+id/te..
分类:
移动开发 时间:
2014-09-09 13:48:19
阅读次数:
327
一、概述抽屉控件,官方已不建议用;但在某些需求下直接使用这个控件还是相当方便的。<SlidingDrawer
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:handle="@+id/handle"
android:content="@+id/content"&g..
分类:
移动开发 时间:
2014-09-03 18:25:48
阅读次数:
349
1.关于searchView:
<SearchView
android:id="@+id/search_view"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:iconifiedByDefault="fal...
分类:
其他好文 时间:
2014-08-27 14:45:32
阅读次数:
280
1.在XHL中:android:id="@+id/spinner1"android:layout_width="match_parent"android:layout_height="wrap_content"android:entries="@+array/other" />在string.xml...
分类:
移动开发 时间:
2014-08-26 08:34:25
阅读次数:
212
AbsListView.LayoutParams lp=new AbsListView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,64);这句话的意思是 创建一个布局(LayoutParams)的实例 lp。AbsListView.Layout...
分类:
移动开发 时间:
2014-08-23 00:59:29
阅读次数:
290
有时候我们需要制作自定义的单选列表,但是会遇到一些问题,比如多选,假选问题,所以网上找了找资料,整理一个demo出来,贴一下代码:
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_co...
分类:
移动开发 时间:
2014-08-22 17:53:19
阅读次数:
381
转载自:http://blog.csdn.net/pkxiuluo01/article/details/7380860Adapter是ListView界面与数据之间的桥梁,当列表里的每一项显示到页面时,都会调用Adapter的getView方法返回一个View。如果列表中有很多的项时会占用极大的系统...
分类:
其他好文 时间:
2014-08-21 22:29:14
阅读次数:
258
Start Android1、LinearLayout布局的嵌套2、layout_weight属性 该属性的值用于指定空闲空间的分配比例;match_parent 匹配父控件wrap_content 匹配内容这一章虽说是深入LinearLayout的布局其关键点在于嵌套一对设置好每一级Li...
分类:
移动开发 时间:
2014-08-14 23:17:26
阅读次数:
271
gravity用来描述当前view的内容在view中的位置。例如 那么hello就会出现在按钮的最下方。如果当前view是个view group,例如 那按钮会出现在layout的最下方。对这个例子,也就是屏幕的最下方。如果把button的宽高都改为match_parent那对于 button...
分类:
移动开发 时间:
2014-08-14 13:35:38
阅读次数:
266
layout_width and layout_heigth 本框与外框之间的关系;属性有fill_parent,wrap_content,match_parent三个属性都用来适应视图的水平或垂直大小,一个以视图的内容或尺寸为基础的布局比精确地指定视图范围更加方便。1)fill_parent设置一...
分类:
其他好文 时间:
2014-08-11 20:27:22
阅读次数:
209