最近看到同事写的一段代码,很简单吧就是:
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:orientation...
分类:
移动开发 时间:
2015-06-24 11:01:00
阅读次数:
122
本博文介绍了基本的Spinner的使用方法首先写一下xml中的代码部分<Spinner
android:id="@+id/myspinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>再写一下Strings.xml中的文件部分<string-array
name="tongxue"
>
<ite..
分类:
移动开发 时间:
2015-06-23 13:45:51
阅读次数:
182
1.ImageViewImageViewimageView=newImageView(this); imageView.setLayoutParams(newLayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
分类:
其他好文 时间:
2015-06-23 09:58:56
阅读次数:
120
//首先在XML文件中配置一下
<TextView
android:id="@+id/textViewId"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="数据"
/>
<Button
android:id="@+id/butid"
android:layout_width="match_parent"
android:layout..
分类:
移动开发 时间:
2015-06-18 11:45:13
阅读次数:
176
三个属性都用来适应视图的水平或垂直大小,一个以视图的内容或尺寸为基础的布局比精确地指定视图范围更加方便。1)fill_parent设置一个构件的布局为fill_parent将强制性地使构件扩展,以填充布局单元内尽可能多的空间。这跟Windows控件的dockstyle属性大体一致。设置一个顶部布局或...
分类:
移动开发 时间:
2015-06-17 13:12:20
阅读次数:
141
<EditText
android:id="@+id/et_endeValue"
android:textSize="20pt"
android:minLines="2"
android:maxLines="3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="请在这里输入内容"
android:text=""/>
android:id@+id是在R...
分类:
移动开发 时间:
2015-06-15 16:45:51
阅读次数:
118
首先介绍一下TimePicker的使用xml文件代码部分<TimePicker
android:id="@+id/firsttime1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<Button
android:id="@+id/button"
android:layout_width="fill_parent"
android:layout_heigh..
分类:
移动开发 时间:
2015-06-10 01:22:05
阅读次数:
176
xml文件代码部分<ProgressBar
android:id="@+id/firstprobar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="200"
android:progress="100"
style="?android:attr/progressBarStyleHorizontal"
/>
<Button
android:id="@+id..
分类:
移动开发 时间:
2015-06-10 01:20:51
阅读次数:
127
<TextView
android:id="@+id/firstview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ff0000"
android:text="第一个Textview"/>
<TextView
android:id="@+id/second"
android:layout_width="wrap_content"
andro..
分类:
移动开发 时间:
2015-06-05 23:01:46
阅读次数:
654
三个属性都用来适应视图的水平或垂直大小,一个以视图的内容或尺寸为基础的布局比精确地指定视图范围更加方便。1)fill_parent设置一个构件的布局为fill_parent将强制性地使构件扩展,以填充布局单元内尽可能多的空间。这跟Windows控件的dockstyle属性大体一致。设置一个顶部布局或...
分类:
移动开发 时间:
2015-06-05 00:38:10
阅读次数:
121