<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:padding="10px"    ><!-- android:layout_above 将该控件的底部置于给定ID的控件之上android:layout_below  将该控件的顶部置于给定ID的控件之下android:layout_toLeftOf 将该控件的右边缘与给定ID的控件左边缘对齐android:layout_toRightOf 将该控件的左边缘与给定ID的控件右边缘对齐android:layout_alignBaseline 该控件的baseline和给定ID的控件的baseline对齐android:layout_alignBottom 将该控件的底部边缘与给定ID控件的底部边缘对齐android:layout_alginLeft 左android:layout_alginRight 右android:layout_alginTop 顶android:alignParentBottom 如果该值为true,刚将该控件的底部与父控件的底部对齐android:alignParentLeft 左android:alignParentRight 右android:alignParentTop 顶android:layout_centerHorizontal 如果值为true,该控件将被置于水平方向的中央android:layout_centerInParent 如果值为true,该控件将被置于于父控件水平方向和垂直方向的中央android:layout_centerVertical 如果值为true,该控件将被置于垂直方向的中央 --><TextView  android:id="@+id/txt_1"    android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:text="Type here:"    /><!-- 位于 txt_1 之下 --><EditTextandroid:id="@+id/edit_1"android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:layout_below="@id/txt_1"    android:background="@android:drawable/editbox_background"/><!-- 位于edit_1之下 ,且与父控件右边对齐--><Button android:id="@+id/btn_1"android:layout_width="fill_parent"     android:layout_height="wrap_content"    android:layout_below="@id/edit_1"    android:layout_alignParentRight="true"    android:text="OK"/><!-- 与btn_1顶部平齐,并位于btn_1左边,与右边控件间隔30px --><Button android:id="@+id/btn_2"android:layout_width="wrap_content"     android:layout_height="wrap_content"    android:layout_alignTop="@id/btn_1"    android:layout_toLeftOf="@id/btn_1"    android:layout_marginRight="30px"    android:text="Cancel"/></RelativeLayout>

更多相关文章

  1. 控件布局_TableLayout
  2. Android 日历方式显示的日期选择组件(日历控件之一)
  3. 控件的圆角
  4. android获取控件宽度
  5. Android 自定义控件之ViewPager Indicator实现方式
  6. Android ScrollView HorizontalScrollView 实现全方向(上下左右)
  7. android仿iPhone滚轮控件实现及源码
  8. Android中的webView控件实现网页缩放

随机推荐

  1. android基础--TextView详解
  2. Android 禁止切屏
  3. 【Android】自定义View实现信封红蓝边/收
  4. #Android项目# ——day03 Android(安卓)
  5. Wear OS手表应用开发教程之-创建环形滚动
  6. Android(安卓)IPC 机制详解:IBinder
  7. 总结一下Android中主题(Theme)的正确玩法
  8. android开发每日汇总【2011-8-25】
  9. 【方案汇总】Android NDK编译时版本异常
  10. 修改android statusbar颜色