ANDROID_MARS学习笔记_S01_009Relative_LAYOUT例子

1.

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:paddingLeft="16dp"
 6     android:paddingRight="16dp" >
 7     <EditText
 8         android:id="@+id/name"
 9         android:layout_width="match_parent"
10         android:layout_height="wrap_content"
11         android:hint="@string/reminder" />
12     <Spinner
13         android:id="@+id/dates"
14         android:layout_width="0dp"
15         android:layout_height="wrap_content"
16         android:layout_below="@id/name"
17         android:layout_alignParentLeft="true"
18         android:layout_toLeftOf="@+id/times" />
19     <Spinner
20         android:id="@id/times"
21         android:layout_width="96dp"
22         android:layout_height="wrap_content"
23         android:layout_below="@id/name"
24         android:layout_alignParentRight="true" />
25     <Button
26         android:layout_width="96dp"
27         android:layout_height="wrap_content"
28         android:layout_below="@id/times"
29         android:layout_alignParentRight="true"
30         android:text="@string/done" />
31 </RelativeLayout>

2.

 1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2     xmlns:tools="http://schemas.android.com/tools"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:paddingBottom="@dimen/activity_vertical_margin"
 6     android:paddingLeft="@dimen/activity_horizontal_margin"
 7     android:paddingRight="@dimen/activity_horizontal_margin"
 8     android:paddingTop="@dimen/activity_vertical_margin"
 9     tools:context="com.example.s01_e15_realtivelayout01.MainActivity" >
10
11     <TextView
12         android:id="@+id/first"
13         android:layout_width="wrap_content"
14         android:layout_height="wrap_content"
15         android:background="#ff0000"
16         android:text="用户登录"
17         android:layout_centerHorizontal="true"/>
18
19     <EditText
20         android:id="@+id/username"
21         android:layout_width="wrap_content"
22         android:layout_height="wrap_content"
23         android:layout_alignParentLeft="true"
24         android:layout_alignParentRight="true"
25         android:hint="username"
26         android:layout_below="@id/first"/>
27     <EditText
28         android:id="@+id/password"
29         android:layout_width="match_parent"
30         android:layout_height="wrap_content"
31         android:hint="password"
32         android:inputType="textPassword"
33         android:layout_below="@id/username"/>
34      <Button
35         android:layout_width="wrap_content"
36         android:layout_height="wrap_content"
37         android:text="登录"
38         android:layout_below="@id/password"
39         android:layout_toLeftOf="@+id/cancel"/>
40     <Button
41         android:id="@id/cancel"
42         android:layout_width="wrap_content"
43         android:layout_height="wrap_content"
44         android:text="取消"
45         android:layout_below="@id/password"
46         android:layout_alignParentRight="true"/>
47
48
49
50 </RelativeLayout>
时间: 2024-10-01 03:04:19

ANDROID_MARS学习笔记_S01_009Relative_LAYOUT例子的相关文章

ANDROID_MARS学习笔记_S01原始版_013_广播机制二

一.代码1.xml(1)main.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="vertical" 4 android:layout_width="fill_pa

ANDROID_MARS学习笔记_S04_007_从服务器获取微博数据时间线

一.代码 1.xml(1)activity_main.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="vertical" 4 android:layout_width=&qu

ANDROID_MARS学习笔记_S04_008_用Listview、自定义adapter显示返回的微博数据

一.简介 运行结果 二.代码1.xml(1)activity_main.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="vertical" 4 android:layout_

java反射机制学习笔记及例子代码

Java 反射的API 反射中常常用的几个类如下所示: java.lang 包中: --Class 类:代表一个类 Java 中,无论生成某个类的多少个对象,这些对象都会对应同一个 Class 对象 Java.lang.reflect 包中: --Field 类:代表类的成员变量(类的属性) --Method 类:代表类的方法,一个方法对应一个 Method 对象 --Constructor 类:代表类的构造方法 --Array 类:提供动态创建数组,以及访问数组的元素的静态方法 利用反射机制调

ANDROID_MARS学习笔记_S03_007_GoogleMap1

一.简介 二.代码1.xml(1)main.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="vertical" 4 android:layout_width="fi

ANDROID_MARS学习笔记_S04_004_用HTTPCLENT发带参数的get和post请求

一.代码 1.xml(1)activity_main.xml 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:layout_width="match_parent" 4 android:layout_height="

ANDROID_MARS学习笔记_S02_012_ANIMATION_利用AnimationListener在动画结束时删除或添加组件

一.代码 1.xml(1)activity_main.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:id="@+id/layoutId" 4 android:orientation="

ANDROID_MARS学习笔记_S01原始版_012_广播机制一

一.简介 二.代码1.xml(1)activity_main.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="vertical" 4 android:layout_width

ANDROID_MARS学习笔记_S01原始版_007_Handler及线程的简单使用

一.运行结果 一.代码1.xml(1)activity_main.xml 1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:layout_width="match_parent" 4 android:layout_heig