在网上查了好多资料,大致都雷同,大家都是互相抄袭的,看着很费劲,不好理解,自己总结一下,留着需要看的话来查找。代码中的例子如下
ImageView
android:id="@+id/iv_bit_1"
android:layout_width="@dimen/passcode_width"
android:layout_...
分类:
移动开发 时间:
2016-05-06 15:45:53
阅读次数:
161
//导入所有的jar包 <com.baidu.mapapi.map.MapView android:id="@+id/bmapView" android:layout_width="fill_parent" android:layout_height="fill_parent" android:cl ...
分类:
其他好文 时间:
2016-05-03 22:00:30
阅读次数:
269
<com.handmark.pulltorefresh.library.PullToRefreshGridView android:id="@+id/pull_refresh_grid" android:layout_width="fill_parent" android:layout_height ...
分类:
其他好文 时间:
2016-04-30 12:59:11
阅读次数:
220
第一步:写main xml文件 <android.support.v4.app.FragmentTabHost android:id="@android:id/tabhost" xmlns:android="http://schemas.android.com/apk/res/android" an ...
分类:
其他好文 时间:
2016-04-23 11:37:20
阅读次数:
222
在Android开发中,我们经常会用到列表下拉刷新和上拉加载的功能。
Google在support.v4包中提供了一个组件可以用来进行下来刷新,这个组件是SwipeRefreshLayout。
下面我们来看一下这个组件的使用:
在布局文件中加上xml代码<android.support.v4.widget.SwipeRefreshLayout
android:id...
分类:
其他好文 时间:
2016-04-22 19:59:49
阅读次数:
243
checkbox点击切换背景 <CheckBox android:id="@+id/checkbox" android:layout_width="40dp" android:layout_height="40dp" android:button="@null" android:focusable= ...
分类:
其他好文 时间:
2016-04-17 19:15:53
阅读次数:
129
CheckBox两种状态:选中(true)和未选中(false)属性:android:id="@+id/checkbox"android:checked="false"是否选中的状态android:text="女"新建:<CheckBox
android:id="@+id/cb1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:te..
分类:
移动开发 时间:
2016-04-17 01:02:32
阅读次数:
177
AutoCompleteTextView功能:动态匹配输入的内容,如搜索框提示待搜索信息,只能选一个;独特属性:android:completionThreshold="2"设置输入多少个字符后开始自动匹配新建一个AutoCompleteTextView:<AutoCompleteTextView
android:id="@+id/actext1"
android:layout_width=..
分类:
其他好文 时间:
2016-04-16 19:38:12
阅读次数:
152
ToggleButton有两种状态,选中和未选中,即开和关,需要在不同状态下显示不同的文本。属性:android:checked="true"android:textOn="开"android:textOff="关"具体文本可以自己设置新建View:<ImageView
android:id="@+id/iv1"
android:layout_width="match_parent"
android:..
分类:
其他好文 时间:
2016-04-16 19:36:09
阅读次数:
115
Android控件之TextView和EditTextTextView:显示文本框控件EditText:输入文本框TextView和EditText的常用属性TextView控件的常用属性android:id 控件的idandroid:layout_width 控件的宽度android:layout ...
分类:
移动开发 时间:
2016-04-16 18:21:21
阅读次数:
1002