第一步: 首先,在 布局文件中,声明listView控件. 1 <ListView 2 android:id="@+id/lv" 3 android:layout_width="fill_parent" //注意宽度和高度必须为 fill_parent 4 android:layout_height
分类:
移动开发 时间:
2016-03-08 00:26:28
阅读次数:
173
之前我们就输入框EditText做了优化,而这次,我们为app添加拨打电话的功能。 首先是布局,将activity_shop_info.xml中对应的电话那一栏进行重新设计: <RelativeLayout android:id="@+id/ll_tel" android:layout_width=
分类:
移动开发 时间:
2016-03-05 13:18:25
阅读次数:
156
首先下载依赖库 ,有现成的jar包:hellocharts-library-1.5.8.jar 在需要的布局中直接使用: <lecho.lib.hellocharts.view.ColumnChartView android:id="@+id/columnchart" android:layout_
分类:
其他好文 时间:
2016-03-04 16:26:24
阅读次数:
4768
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/swipe_container" android:lay
分类:
移动开发 时间:
2016-03-02 13:22:38
阅读次数:
240
1 <android.support.v4.widget.SwipeRefreshLayout 2 xmlns:android="http://schemas.android.com/apk/res/android" 3 android:id="@+id/swipe_container" 4 and
分类:
移动开发 时间:
2016-03-02 13:12:53
阅读次数:
179
最近在机顶盒上做一个gridview, 其焦点需要在item的子控件上,但gridview的焦点默认在item上,通过 android:descendantFocusability="afterDescendants" <ScrollView android:id="@+id/scroll_cont
分类:
其他好文 时间:
2016-02-29 12:17:11
阅读次数:
137
<LinearLayout android:id="@+id/recLayout" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" androi
分类:
移动开发 时间:
2016-02-28 16:33:24
阅读次数:
377
这次内容,我们就项目中添加商店名称的EditText进行修改,让添加按钮随着edittext的内容而改变。 上代码,首先是xml文件上对两个控件的修改: <RelativeLayout android:id="@+id/et_relative" android:layout_width="match
分类:
移动开发 时间:
2016-02-27 23:41:08
阅读次数:
349
1、xml对ImageView的src要设置成selector <ImageView android:id="@+id/like_icon" android:layout_width="@dimen/will_like_icon_width" android:layout_height="@dime
分类:
其他好文 时间:
2016-02-25 22:58:56
阅读次数:
292
1、布局文件中使用 1 <android.support.v7.widget.RecyclerView 2 android:id="@+id/recycleview" 3 android:paddingLeft="10dp" 4 android:paddingRight="10dp" 5 andro
分类:
其他好文 时间:
2016-02-23 15:54:59
阅读次数:
152