<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" and ...
分类:
其他好文 时间:
2017-06-23 00:40:58
阅读次数:
114
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" and ...
分类:
其他好文 时间:
2017-06-23 00:38:58
阅读次数:
203
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
## 1.抽屉控件SlidingDrawer:一定要配置android:handle(把手)和android:content(内容),并在子View中添加把手和内容的布局```java <SlidingDrawer android:layout_width="match_parent" androi ...
分类:
移动开发 时间:
2017-06-12 11:54:09
阅读次数:
236
(1) <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="ma ...
分类:
移动开发 时间:
2017-06-11 13:01:29
阅读次数:
140
这是一个3行的EditText, 光标默认第一行, 进入activity之后不显示键盘 edittext失去焦点 <EditText android:id="@+id/reform_result" android:layout_width="0dp" android:layout_weight="1 ...
分类:
其他好文 时间:
2017-06-10 22:28:39
阅读次数:
277
<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
一、TextView(显示控件) android:id(给当前控件定义唯一的标识符)——示例:android:id = "@+id/text_view" android:layout_width(指定控件的宽度)——示例:andriod:layout_width = "match_parent" a ...
分类:
其他好文 时间:
2017-06-09 22:42:25
阅读次数:
309
在组件中增加<requestFocus />能够首先获得焦点 以TextView为例: 例如以下: <TextView android:layout_width="100dp" android:layout_height="wrap_content" android:background="#ffc ...
分类:
移动开发 时间:
2017-06-09 15:19:24
阅读次数:
176