码迷,mamicode.com
首页 >  
搜索关键字:android_id    ( 471个结果
ImageView的属性android:scaleType作用
在网上查了好多资料,大致都雷同,大家都是互相抄袭的,看着很费劲,不好理解,自己总结一下,留着需要看的话来查找。代码中的例子如下 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
PullToRefreshGridView
<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
fragmenttab使用流程
第一步:写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
自定义View——利用下拉刷新组件实现上拉加载
在Android开发中,我们经常会用到列表下拉刷新和上拉加载的功能。 Google在support.v4包中提供了一个组件可以用来进行下来刷新,这个组件是SwipeRefreshLayout。 下面我们来看一下这个组件的使用: 在布局文件中加上xml代码<android.support.v4.widget.SwipeRefreshLayout android:id...
分类:其他好文   时间:2016-04-22 19:59:49    阅读次数:243
listview中item 有checkbox多选防止滑动 listview页面 出现checkbox错位问题
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
Android中的一些开关
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
预显示TextView
AutoCompleteTextView功能:动态匹配输入的内容,如搜索框提示待搜索信息,只能选一个;独特属性:android:completionThreshold="2"设置输入多少个字符后开始自动匹配新建一个AutoCompleteTextView:<AutoCompleteTextView android:id="@+id/actext1" android:layout_width=..
分类:其他好文   时间:2016-04-16 19:38:12    阅读次数:152
ToggleButton
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和EditText
Android控件之TextView和EditTextTextView:显示文本框控件EditText:输入文本框TextView和EditText的常用属性TextView控件的常用属性android:id 控件的idandroid:layout_width 控件的宽度android:layout ...
分类:移动开发   时间:2016-04-16 18:21:21    阅读次数:1002
471条   上一页 1 ... 14 15 16 17 18 ... 48 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!