Caused by: java.lang.IllegalArgumentException: Binary XML file line #7: Must specify unique android:id, android:tag, or have a parent with an id for com.mama.fragment.Fragment1...
分类:
移动开发 时间:
2015-08-07 22:27:42
阅读次数:
169
1、xml中引用ViewPager
android:id="@+id/viewPager"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="...
分类:
其他好文 时间:
2015-08-07 20:18:23
阅读次数:
166
1.XML
<TextView
android:id="@+id/tv_value"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:scrollbars="v...
分类:
移动开发 时间:
2015-08-07 19:58:23
阅读次数:
168
android 5.0 后google终于在 support v4 包下 增加了下拉刷新的控件
项目地址: https://github.com/stormzhang/SwipeRefreshLayoutDemo
xml:
android:id="@+id/swipe_container"
android:layout_width="match_parent"
and...
分类:
移动开发 时间:
2015-08-07 13:29:50
阅读次数:
142
对应若水老师的第六课
一,加入一个button并用外部类绑定事件
//XML文件:
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layou...
分类:
移动开发 时间:
2015-08-07 13:19:21
阅读次数:
128
现象安卓中使用listview时条目与条目间会出现一条分割线,以前并没有在意过。今天仔细看了美工给出的效果图,条目间是没有分割线的。此处我们需要设置一下listview的属性
<ListView
android:id="@+id/lv_ordertype"
android:layout_width="match_parent"
android:lay...
分类:
移动开发 时间:
2015-08-06 16:50:07
阅读次数:
220
Spinner即下拉菜单。在android中实现Spinner组件需要以下三个步骤:1.在XML文件中定义标签Spinner<Spinner
android:id="@+id/spinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>2.在Str...
分类:
其他好文 时间:
2015-07-28 00:53:53
阅读次数:
110
一、有两种状态: 选中状态(true)、未选中状态(false)二、属性 android:id = "@+id/checkbox" android:layout_width="match_parent" android:layout_height="wrap_content"...
分类:
移动开发 时间:
2015-07-20 21:20:25
阅读次数:
150
上一节学习了利用Intent传值。本节学习利用激活新的Activity获得其返回值。
MainActivity的布局文件如下:
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_cont...
分类:
移动开发 时间:
2015-07-19 16:35:12
阅读次数:
148
Android调用系统api使用照相机功能,实现拍照获取图片以及从照相机库中获取指定图片的功能。
以下是示例代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main"
android:layout_width="match...
分类:
移动开发 时间:
2015-07-19 16:32:08
阅读次数:
205