item.xml文件<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_c ...
分类:
移动开发 时间:
2018-11-19 14:11:21
阅读次数:
159
常用属性 id:控件唯一属性 android:id="@+id/ll_1" layout_width:宽度 layout_height:高度 android:layout_width="300dp" 固定宽度和高度 android:layout_height="300dp" android:layo ...
分类:
其他好文 时间:
2018-11-05 11:17:13
阅读次数:
156
开发中用到了LeankCanary,在一个简单的页面中(例如:仅仅包含Edittext),也会导致内训泄漏,为此,我在网上找了大量资料,最终解决。例如一个布局:<LinearLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"android:focus
分类:
移动开发 时间:
2018-11-02 11:13:49
阅读次数:
501
MainActivity.xml: <Button android:id="@+id/btnGo" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button Go" an ...
分类:
移动开发 时间:
2018-10-02 20:28:44
阅读次数:
792
做一个如图所示的布局。 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="matc ...
分类:
其他好文 时间:
2018-08-03 01:05:30
阅读次数:
180
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" andr ...
分类:
移动开发 时间:
2018-08-03 00:53:47
阅读次数:
212
通过id设置相对兄弟元素对齐。 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height=" ...
分类:
其他好文 时间:
2018-08-01 20:50:59
阅读次数:
164
<ImageView android:id="@+id/adapter_store_employee_list_imgv_sex" android:layout_width="wrap_content" android:layout_height="wrap_content" android:lay ...
分类:
移动开发 时间:
2018-07-24 15:52:50
阅读次数:
177
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" androi ...
分类:
其他好文 时间:
2018-05-24 19:57:43
阅读次数:
205
归纳一下控件属性,很多属性都是共通的,不一定只有我归类那个可以用 TextView: android:id:给当前控件定义唯一标示符 android:layout_width:指定控件的宽度 android:layout_height:指定控件的高度 (高宽属性的可选值:match_parent(比 ...
分类:
其他好文 时间:
2018-04-26 11:55:46
阅读次数:
170