Spinner:
是类似下拉列表的一种控件,用户从中选择相应选项!
Spinner中的数据需要使用Adapter(适配器)填充。
使用:
布局文件activity_main.xml:
<Spinner
android:id="@+id/spinner"
android:layout_width="match_parent"
...
分类:
移动开发 时间:
2015-09-01 09:16:12
阅读次数:
214
CheckBox复选框
1.属性:android:id="@+id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="false"//复选框状态
具体在mainActivity.java中实现
package com.imooc....
分类:
移动开发 时间:
2015-08-31 10:15:18
阅读次数:
196
在布局文件中添加如下代码: <android.support.v7.widget.Toolbar
android:id="@+id/toobar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:backgro...
分类:
移动开发 时间:
2015-08-26 12:08:42
阅读次数:
199
使用布局文件创建菜单:(多级菜单)
在res下创建文件夹menu(如果已经有啦就不用再创建了)
在该menu文件夹下创建XML文件这里我把文件名命名为menu
在创建的menu.XML文件中
写入:
android:id="@+id/file"
android:title="file"/>
...
分类:
移动开发 时间:
2015-08-21 09:29:15
阅读次数:
352
一、TabActivity + TabWidget + TabHost.
实现TAB类型界面,首先想到的就是这种方式。但是在API level 13之后官方就不建议使用它了。不过还是在这里简单说一下它的使用吧。
使用它的关键就是布局文件了。需要在布局中添加、、这三个控件,id分别是系统提供的:@android:id/tabhost 、@android:id/tabs 、@and...
分类:
移动开发 时间:
2015-08-15 10:26:48
阅读次数:
265
共有属性: java代码中通过btn1关联次控件 android:id="@+id/btn1"控件宽度 android:layout_width="80px"//"80dip"或"80dp"android:layout_width =“wrap_content”android:layout_widt...
分类:
其他好文 时间:
2015-08-15 00:10:03
阅读次数:
216
LinearLayout和RelativeLayout共有属性:java代码中通过btn1关联次控件android:id="@+id/btn1"控件宽度android:layout_width="80px"//"80dip"或"80dp"android:layout_width =“wrap_con...
分类:
其他好文 时间:
2015-08-13 11:52:43
阅读次数:
103
(1)在TableLayout里面可以使用:
android:stretchColumns="0,3"使左右最边上两个列允许别拉伸
例如:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tablelayout1"
android:lay...
分类:
移动开发 时间:
2015-08-10 20:12:11
阅读次数:
127
FitWidth ImageView: 宽度自适应 [html]?view plaincopyprint? <com.kk.drama.view.widget.FitWidthImageView?? ??????????android:id="@+id/show_images"?? ??????????android:layout_...
分类:
其他好文 时间:
2015-08-08 12:14:17
阅读次数:
192
常用组件
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
android:layout_width="wrap_content"
android:id="@+id/textV...
分类:
移动开发 时间:
2015-08-08 00:04:40
阅读次数:
126