UI_常用组件之 Spinner(下拉列表)与适配器模式 <Spinner android:id="@+id/spinner1" android:layout_width="142dp" android:layout_height="wrap_content" android:entries="@a ...
分类:
其他好文 时间:
2017-07-22 09:50:10
阅读次数:
127
普通字符串资源: 布局资源: 案例: main.xml: <TextView android:id="@+id/textView1" android:layout_width="match_parent" android:layout_height="240dp" android:text="加油吧 ...
分类:
其他好文 时间:
2017-07-17 11:11:07
阅读次数:
181
1.XML文件布局<Button
android:id="@+id/bt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="doClick"
android:text="XML添加doClick"
android:layout_above="@+id/bt2"
android:layout_marginBottom="47dp"
/>
<Butt..
分类:
其他好文 时间:
2017-07-11 14:42:59
阅读次数:
234
界面布局activity_lan_qiu,代码xml设置如下:<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertic..
分类:
其他好文 时间:
2017-07-07 10:21:46
阅读次数:
203
1.加入水平线 <View android:layout_height="0.5dip" android:background="#686868" android:layout_width="match_parent"/> 2.加入垂直线 <View android:layout_height="m ...
分类:
移动开发 时间:
2017-06-29 14:04:00
阅读次数:
147
注意rating_background图片做出来的图片最好和图片四周有一定的空隙。不然会造成图片底部被拉伸的情况。 <RatingBar android:layout_width="wrap_content" android:layout_height="wrap_content" android: ...
分类:
移动开发 时间:
2017-06-26 10:24:02
阅读次数:
224
(1)对于xml编写界面较复杂的情况下,使用include会使得编写和查看更清楚 <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="v ...
分类:
移动开发 时间:
2017-06-24 15:36:17
阅读次数:
191
1,mobile_signal_group.xml ..... <FrameLayout android:id="@+id/mobile_combo" android:layout_width="wrap_content" android:layout_height="wrap_content" > ...
分类:
移动开发 时间:
2017-06-17 16:05:58
阅读次数:
301
这是xml文件的代码。 <TextView android:id="@+id/main_tv" android:textSize="25sp" android:layout_width="wrap_content" android:layout_height="wrap_content" andro ...
分类:
其他好文 时间:
2017-06-14 11:38:04
阅读次数:
220
<EditText android:layout_width="200dp" android:layout_height="50dp" android:hint="请输入账号" android:singleLine="true" android:drawableLeft="@drawable/ic_ ...
分类:
其他好文 时间:
2017-06-10 15:32:48
阅读次数:
122