首先是主要布局 <android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipeRefreshLayout"
android:layout_width="match_parent"
an...
分类:
移动开发 时间:
2015-09-22 23:48:02
阅读次数:
499
有效的实现方式: ?<CheckBox
????????????android:id="@+id/cb_market_car_selection"
????????????android:layout_width="wrap_content"
????????????android:layout_he...
分类:
移动开发 时间:
2015-09-22 11:35:05
阅读次数:
309
通用属性:android:id (设置该控件的id) 后台对应方法:setId(int id)android:layout_width (设置该控件的宽度) 后台对应方法:setWidth(int pixels) dp为单位android:layout_height ...
分类:
其他好文 时间:
2015-09-17 11:33:13
阅读次数:
317
一、TextView控件的常用属性 android:id——控件的id android:layout_width——控件的宽度 android:layout_height——控件的高度 android:text——文本内容 android:textSize——文本大小...
分类:
移动开发 时间:
2015-09-16 20:01:27
阅读次数:
206
一、EditText控件的常用属性 android:id——控件的id android:layout_width——控件的宽度 android:layout_height——控件的高度 android:text——文本内容(可以设置默认值) android:te...
分类:
移动开发 时间:
2015-09-16 19:34:40
阅读次数:
255
最近开发的时候,总是觉得EditText获取光标不正常,时常无法获取到光标,还在想是不是事件传递上出现了问题,今天突然觉得应该是布局问题,先把正确代码贴出来: <EditText android:id="@+id/et_shop_name" ...
分类:
其他好文 时间:
2015-09-15 20:25:26
阅读次数:
199
Refer to :http://android.toolib.net/reference/android/widget/TabHost.html tabHost=(TabHost)findViewById(android.R.id.tabhost);//获取TabHost对象 tabHost.se...
分类:
其他好文 时间:
2015-09-09 17:26:38
阅读次数:
177
Refer to :http://android.toolib.net/reference/android/widget/TabHost.html tabHost=(TabHost)findViewById(android.R.id.tabhost);//获取TabHost对象 tabHost.se...
分类:
其他好文 时间:
2015-09-09 16:25:54
阅读次数:
183
一、自定义进度条 1.<ProgressBar
????????android:id="@+id/patch_progress"
????????style="@style/gxProgressStyle"
????????android:layout_width="match_parent"
????????a...
分类:
其他好文 时间:
2015-09-08 20:26:32
阅读次数:
246
代码实现后界面如图:一。xml文件1.<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"android:id="@+id/relativelayout"><TextVie..
分类:
其他好文 时间:
2015-09-03 11:39:51
阅读次数:
246