(一)控件的方式 1.用XML代码定义 <TextView android:layout_width="fill_parent" android:layout_height="wrap_content android:text="Hello World" android:textSize="40sp ...
分类:
其他好文 时间:
2017-06-07 12:32:15
阅读次数:
206
计时器(秒表)Chronometer <Chronometer android:id="@+id/miaobiao" android:layout_width="wrap_content" android:layout_height="wrap_content"/> 1 mychrCh.setOnC ...
分类:
其他好文 时间:
2017-06-05 15:47:42
阅读次数:
293
一、基础View控件 View类的常见XML属性,对应发放及说明 每个界面控件都需要设置Android:layout_height,Android:layout_width,指定控件的高度和宽度。通常有三种取值 android:layout_width="wrap_content"表示控件的宽(用h ...
分类:
移动开发 时间:
2017-05-28 18:05:04
阅读次数:
185
(一)控件的方式 1.用XML代码定义 <TextView android:layout_width="fill_parent" android:layout_height="wrap_content android:text="Hello World" android:textSize="40sp ...
分类:
其他好文 时间:
2017-05-27 00:43:48
阅读次数:
180
(转载http://www.cnblogs.com/nikyxxx/archive/2012/06/15/2551390.html) 三个属性都用来适应视图的水平或垂直大小,一个以视图的内容或尺寸为基础的布局比精确地指定视图范围更加方便。 1)fill_parent 设置一个构件的布局为fill_p ...
分类:
移动开发 时间:
2017-05-23 11:21:48
阅读次数:
178
1.LinearLayout(线性布局) android: orientation="vertical" //布局 android: layout_width="wrap_content " //控件宽度 android: layout_height="fill_parent" //控件高度 注意: ...
分类:
其他好文 时间:
2017-05-19 22:25:13
阅读次数:
163
1.LinearLayout(线性布局) android:orientation="vertical" //布局 android:layout_width="wrap_content" //控件宽度 android:layout_height="fill_parent" //控件高度 android ...
分类:
移动开发 时间:
2017-05-19 21:01:49
阅读次数:
243
1.LinearLayout(线性布局) android: orientation="vertical" //布局 android: layout_width="wrap_content " //控件宽度 android: layout_height="fill_parent" //控件高度 注意: ...
分类:
其他好文 时间:
2017-05-19 20:17:28
阅读次数:
151
<RadioGroup android:layout_width="fill_parent" android:layout_height="wrap_content" android:checkedButton="@+id/rb2" > <RadioButton android:id="@+id/r ...
分类:
移动开发 时间:
2017-05-18 18:43:10
阅读次数:
347
需求:网络请求接口,实现自动依次播放视频 1:xml布局文件 <VideoView android:id="@+id/video" android:layout_width="match_parent" android:layout_height="wrap_content" android:lay ...
分类:
其他好文 时间:
2017-05-18 16:50:55
阅读次数:
197