android shape的使用 然后在布局文件里面的Button里面设置如下: [java] view plain copy <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_h ...
分类:
移动开发 时间:
2017-05-12 20:30:32
阅读次数:
286
安卓作业: 使用SharedPreference将姓名和年龄信息保存到文件,然后再读取 1.主要xml文件代码: <EditText android:id="@+id/name" android:layout_width="match_parent" android:layout_height="w ...
分类:
其他好文 时间:
2017-05-09 23:11:23
阅读次数:
251
Checkbox有个属性值 <CheckBox android:id="@+id/cb_reg_agree" style="@style/reg_checkbox_style" android:layout_width="wrap_content" android:layout_height="wr ...
分类:
其他好文 时间:
2017-05-01 22:11:51
阅读次数:
124
Android在布局文件里为View提供了onClick属性。用法例如以下: <TextView android:id="@+id/user" android:layout_width="@dimen/px_171" android:layout_height="fill_parent" andro ...
分类:
移动开发 时间:
2017-04-26 20:25:26
阅读次数:
171
一.最终成型图 二.主界面xml布局 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/ac ...
分类:
其他好文 时间:
2017-04-17 18:07:32
阅读次数:
246
TextView: android:id -- 控件的ID android:layout_width -- 控件的宽度 android:layout_height -- 控件的高度 android:text -- 文本内容 android:textSize -- 文本大小 android:textC ...
分类:
移动开发 时间:
2017-04-09 23:27:46
阅读次数:
270
恢复内容开始 Activity: android:id="@+id/b1 android:layout_width="fill_parent" android:layout_height="wrap_content" android:onClick="dj1" android:text="RED" ...
分类:
移动开发 时间:
2017-04-08 13:51:11
阅读次数:
222
1、界面布局 <TextView android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World"/> <Edi ...
分类:
其他好文 时间:
2017-03-19 22:09:09
阅读次数:
158
1、首先在一个布局文件(.XML)中绘画了一个跳转按钮(id为btn1): <Button android:id="@+id/btn1" android:layout_width="wrap_content" android:layout_height="wrap_content" android: ...
分类:
移动开发 时间:
2017-03-17 17:44:53
阅读次数:
160
<menu xmlns:android="http://schemas.android.com/apk/res/android" > <item android:id="@+id/copy" android:orderInCategory="100" android:title="@string/c ...
分类:
其他好文 时间:
2017-03-12 11:43:41
阅读次数:
143