<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_par...
分类:
移动开发 时间:
2015-03-03 11:42:19
阅读次数:
137
感谢极客学院的视频布局文件:<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
and..
分类:
移动开发 时间:
2015-03-02 19:16:05
阅读次数:
209
先看下XML布局文件
<EditText
android:id="@+id/et"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/tv_cou...
分类:
移动开发 时间:
2015-02-28 18:38:34
阅读次数:
152
<android.support.v7.widget.GridLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:c...
分类:
其他好文 时间:
2015-02-28 10:18:41
阅读次数:
241
XML布局<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:paddingBottom="@dimen/activity_vertical_margin"an..
分类:
其他好文 时间:
2015-02-27 01:34:17
阅读次数:
148
一个原因是布局文件中,没有给列表显示的位置。
例如:下面的布局
android:id="@+id/list_find"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:cacheColorHint="@and...
分类:
移动开发 时间:
2015-02-26 11:45:36
阅读次数:
136
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_p...
分类:
其他好文 时间:
2015-02-23 00:16:31
阅读次数:
222
最近需要用到datepicke和timepicker一起用,但是发现个问题,通过XML布局文件无法跳转大小样式,XML文件内容如下
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_...
分类:
移动开发 时间:
2015-02-15 12:13:07
阅读次数:
206
ViewPager图片自动(手动)滑动
主布局文件:
activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"...
分类:
其他好文 时间:
2015-02-14 13:50:36
阅读次数:
242
总结在Android中,一共有数据存储的5种方式。今天做一个笔记的整理。关于以文件形式如何来保存数据。
1.在activity_main.xml设计好布局
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height=...
分类:
移动开发 时间:
2015-02-14 12:23:36
阅读次数:
214