//RadioGroup中xml文件的配置
<RadioGroup
android:id="@+id/radiogroupid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<RadioButton
android:id="@+id/femalebutton"
android:layout_width="wr..
分类:
移动开发 时间:
2015-06-04 12:07:53
阅读次数:
132
一、键盘不消失,popuwindow在下层布局大小不变 popupWindow=new PopupWindow(popuview,LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
// 需要设置一下此参数,点击外边可消失?
popupWindow.setBack...
三个属性都用来适应视图的水平或垂直大小,一个以视图的内容或尺寸为基础的布局比精确地指定视图范围更加方便。
(1) fill_parent
设置一个构件的布局为fill_parent将强制性地使构件扩展,以填充布局单元内尽可能多的空间。这跟Windows控件的dockstyle属性大体一致。设置一个顶部布局或控件为fill_parent将强制性让它布满整个屏幕。
(2) wrap_conte...
分类:
移动开发 时间:
2015-05-29 18:05:38
阅读次数:
121
首先准备一个删除按钮的布局,新建button.xml文件,代码如下所示:
<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_...
分类:
其他好文 时间:
2015-05-29 09:59:12
阅读次数:
140
android:weight属性能够根据手机高宽按设定比例显示控件如:宽度上按比例显示<LinearLayoutandroid:layout_marginTop="5dp"androidrientation="horizontal"android:layout_width="fill_parent"----------------让其满宽android:layout_height="wrap_content"><Buttona..
分类:
移动开发 时间:
2015-05-28 18:26:04
阅读次数:
325
android自定义按钮1》定义按钮布局文件<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"androidrientation="horizontal"android:layout_gravity="center"android:layout_width="wrap_content"android:l..
分类:
移动开发 时间:
2015-05-28 18:23:46
阅读次数:
199
Android控件(包括布局)的所共有的属性:android:id="@+id/denglu_et_name"
设置控件的id,denglu_et_name可以替换成你需要的id号名称android:layout_width="wrap_content"设置控件的宽
android:layout_height="wrap_content"设置控件的高
设置控件宽高的值:适应内容的wrap_con..
分类:
移动开发 时间:
2015-05-27 01:07:01
阅读次数:
234
最近在搞一个关于日期选择DatePicker的PopupWindow需求,默认拖出来的空间都是年/月 可以上下滑动选择,可是日那块就是Calendar板的样式,网上搜了一大堆 ,竟然发现都是一样的,小白苟且猜测,大多是复制别人的,废话不多说,上代码:
<DatePicker
android:layout_width="wrap_content"
...
分类:
其他好文 时间:
2015-05-25 10:15:13
阅读次数:
228
文本框:存放文本的<TextViewandroid:id="@+id/textView1"//控件的身份android:layout_width="wrap_content"android:layout_height="wrap_content"//wrap_content适应内容//match_parent填充容器//fill_parent跟match_parent一样的//直接使用整数单位dpandroid:layout_align..
分类:
移动开发 时间:
2015-05-24 06:40:31
阅读次数:
261
普通圆形ProgressBar该类型进度条也就是一个表示运转的过程,例如发送短信,连接网络等等,表示一个过程正在执行中。一般只要在XML布局中定义就可以了。<progressBarAndroid:id="@+id/widget43"android:layout_width="wrap_content"android:layout_height="wrap_content"and..
分类:
移动开发 时间:
2015-05-24 06:38:42
阅读次数:
318