Android布局之ReativeLayout
如果你的程序中出现了多个LinearLayout嵌套,就应该考虑使用相对布局了。相对局部顾名思义一个控件的位置相对于其他控件或者容器的位置。使用很简单 直接上示例:
<?xml version="1.0" encoding="utf-8"?>
<!-- 相对布局 一个控件相对于另一个控件或者容器的位置。 -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@drawable/bg"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/describe_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:textColor="#556055"
/>
<!-- 这个TextView相对于上一个TextView 在 它的下方所以设置属性为layout_below-->
<TextView
android:id="@+id/username_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:text="@string/username"
android:textColor="#556055"
android:layout_below="@id/describe_view"
/>
<EditText
android:id="@+id/username_edit"
android:layout_width="90dp"
android:layout_height="40dp"
android:layout_marginTop="4dp"
android:layout_toRightOf="@id/username_view"
android:layout_below="@id/describe_view"
/>
<TextView
android:id="@+id/sex_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:text="@string/sex"
android:textColor="#556055"
android:layout_below="@id/describe_view"
android:layout_toRightOf="@id/username_edit"
/>
<RadioGroup
android:id="@+id/sex_radiogroup"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/sex_view"
android:layout_below="@id/describe_view"
>
<!--第一个RadioButton -->
<RadioButton
android:id="@+id/male_radiobutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="男"
/>
<!--第二个RadioButton -->
<RadioButton
android:id="@+id/woman_radiobutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="女"
/>
</RadioGroup>
<TextView
android:id="@+id/age_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="25dp"
android:text="@string/age"
android:textColor="#556055"
android:layout_below="@id/username_view"
/>
<EditText
android:id="@+id/brithday_edit"
android:layout_width="90dp"
android:layout_height="40dp"
android:layout_marginTop="4dp"
android:hint="@string/selectdate"
android:textSize="13sp"
android:gravity="center"
android:editable="false"
android:layout_toRightOf="@id/age_view"
android:layout_below="@id/username_edit"
/>
<TextView
android:id="@+id/education_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="25dp"
android:text="@string/education"
android:textColor="#556055"
android:layout_below="@id/sex_view"
android:layout_toRightOf="@id/brithday_edit"
/>
<!-- 下拉列表控件 -->
<Spinner
android:id="@+id/edu_spinner"
android:layout_width="108dp"
android:layout_height="38dp"
android:layout_below="@id/sex_radiogroup"
android:layout_toRightOf="@id/education_view"
/>
<TextView
android:id="@+id/interest_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="25dp"
android:text="@string/interest"
android:textColor="#556055"
android:layout_below="@id/age_view"
/>
<!-- 复选框控件 -->
<CheckBox
android:id="@+id/car_check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/car"
android:textColor="#566156"
android:layout_toRightOf="@id/interest_view"
android:layout_below="@id/brithday_edit"
/>
<CheckBox
android:id="@+id/sing_check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="11dp"
android:text="@string/sing"
android:textColor="#566156"
android:layout_toRightOf="@id/car_check"
android:layout_below="@id/brithday_edit"
/>
<CheckBox
android:id="@+id/movie_check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="11dp"
android:text="@string/movie"
android:textColor="#566156"
android:layout_toRightOf="@id/sing_check"
android:layout_below="@id/brithday_edit"
/>
<Button
android:id="@+id/submit_button"
android:layout_width="100dp"
android:layout_height="40dp"
android:text="@string/submit"
android:gravity="center"
android:layout_below="@id/movie_check"
android:layout_marginLeft="210dp"
android:layout_marginTop="15dp"
/>
</RelativeLayout>
- RelativeLayout.rar (244.1 KB)
- 下载次数: 0
发表评论
-
资料上传备份
2012-07-02 07:28 0对付对付对付对付 -
Android-sharedUserId数据权限
2012-05-02 10:16 1445Android-sharedUserId数据权限 An ... -
Android Service学习之本地服务
2012-04-18 10:28 863转: Android Service学习之本地服务 htt ... -
match_parent和fill_parent的区别 .
2012-02-18 11:49 1840match_parent和fill_parent的区别 有 ... -
Android中SQLiteOpenHelper类的onUpgrade方法的作用
2012-02-09 11:50 4601Android中SQLiteOpenHelper类的onUpg ... -
Android启动各种系统服务线程
2012-02-09 10:59 1936Android启动各种系统服务 ... -
android
2012-02-08 09:22 0Android数据库内容变化的监听 首先介绍内容监 ... -
在线升级Android应用程序的思路
2012-02-07 11:34 880在线升级Android应用程序的思路 http://www. ... -
Android数据库内容变化的监听
2012-02-07 11:31 6033Android数据库内容变化的监听 首先介绍内容监 ... -
android中的数据库操作
2012-02-07 10:50 1451android中的数据库操作 ... -
SQLiteOpenHelper类与自动升级数据库
2012-02-07 10:31 2283SQLiteOpenHelper类与自动升级数据库 S ... -
SQLite外键的实现
2012-02-07 10:30 1717SQLite外键的实现 SQLite现在的版本还不支持 ... -
Android到处都在使用的回调分析
2011-12-21 15:53 3547Android到处都在使用的回调分析 ... -
android中LayoutInflater的使用
2011-12-21 11:35 1932android中LayoutInflater的使用 ... -
SIM卡满处理流程分析
2011-12-19 15:15 1882SIM卡满处理流程分析 //框架层分析 // SMSD ... -
短信发送状态报告流程分析
2011-12-19 15:07 2393短信发送状态报告流程分析 //应用层分析: //Sms ... -
Android平台 短信接送流程剖析(含编码)
2011-12-16 15:29 3228Android平台 短信接送流程剖析(含编码) ... -
修改语言环境方法
2011-12-16 15:20 1040修改语言环境方法 private void se ... -
Android平台 短信发送流程剖析(含编码)
2011-12-12 17:12 4334Android平台 短信发送流程剖析(含编码) 本文对A ... -
Android 应用程序签名
2011-11-27 11:34 1642Android 应用程序签名 转:http://www ...
相关推荐
【Android布局文件详解】 在Android应用开发中,界面设计是一个至关重要的环节,而XML格式的布局文件正是构建这些界面的核心工具。布局文件定义了应用程序界面的结构,包括它所包含的控件、控件间的相对位置以及...
在Android应用开发中,XML布局文件是构建用户界面(UI)的主要方式,它允许开发者以声明式编程的方式定义UI元素的结构和样式。...因此,熟悉Android Studio的布局工具是当前Android开发者的必备技能之一。
在Android开发中,布局管理器是构建用户界面(UI)的关键元素。它们负责组织和定位UI组件,确保屏幕上的元素合理、美观地排列。本文将深入探讨Android中的常见布局管理器,尤其是基于XML的布局,以及如何在Activity...
LinearLayout 线性布局 控制组件 横向 或者 纵向 排列 RelativeLayout 相对布局 子组件的位置总是相对兄弟组件,父容器来决定的 FrameLayout 帧布局、框架布局 创建一个空白区域, 一个区域成为一帧 TableLayout 表格...
android不同的布局资源介绍,包括LinearLayout、RelativeLayout等
Android布局高级.doc
本篇文章将详细讲解Android中的五种主要布局:线性布局(LinearLayout)、相对布局(RelativeLayout)、帧布局(FrameLayout)、表格布局(TableLayout)以及约束布局(ConstraintLayout),并结合实例来帮助理解...
相对布局,相比之下更为复杂,但提供了更高级的对齐和定位选项。在相对布局中,子视图的位置相对于其他子视图或父布局的边缘来确定,通过`android:layout_alignParentTop`、`android:layout_toRightOf`等属性实现。...
在Android应用开发中,界面布局的设计是至关重要的。RelativeLayout是一种常用的布局管理器,它允许控件根据相对位置进行排列,提供了灵活的布局方案。本文主要介绍如何使用RelativeLayout来实现一个特殊的“梅花...
首先,在res下面新建一个文件夹drawable,在drawable下面新建三个xml文件:shape_corner_down.xml、shape_corner_up.xml和shape_corner.xml,分别是下面两个角是圆角边框,上面两个角是圆角...solid android:color=#0
在Android开发中,自定义布局是提升应用独特性和用户体验的重要手段。`CircleLayout`就是一种特殊的自定义布局,它使得内部的子视图按照圆形排列,增强了界面的视觉效果。本篇文章将深入探讨如何实现这样一个自定义...
Android 中有七种常见的布局方式,即线性布局(Linear Layout)、相对布局(Relative Layout)、表格布局(Table Layout)、网格视图(Grid View)、标签布局(Tab Layout)、列表视图(List View)和绝对布局...
在Android开发中,布局设计是构建用户界面的关键环节。"Android四等分布局Demo"是一个典型的实例,它展示了如何将屏幕划分为四个相等的部分,为用户提供清晰、均衡的显示效果。这种布局常用于创建网格系统,如卡片式...
在Android应用开发中,框架布局是构建用户界面(UI)不可或缺的部分。Android提供了一系列的布局管理器,使得开发者能够有效地组织和控制应用中的组件。本文将深入探讨Android框架布局的使用,包括各种常用布局的...
在Android开发中,布局(Layout)是构建用户界面的核心元素,它定义了屏幕上各个组件的排列方式和相互关系。本示例"android框架布局demo"旨在帮助开发者更好地理解和运用Android中的布局管理技术。通过这个简单易懂...
在Android开发中,布局(Layout)是构建用户界面的基础元素,它定义了屏幕上控件的排列方式和相互关系。本文将深入探讨Android中常见的几种布局及其使用方法,以帮助开发者更好地构建美观且功能丰富的应用程序。 一...
Android XML 布局属性详解 Android XML 布局属性是 Android 应用程序中最基本也是最重要的一部分。它负责控制屏幕上的各种控件的布局和排列。 Android XML 布局属性可以分为三类:第一类是属性值为 true 或 false ...
在Android开发中,创建一个课程表布局是一项常见的任务,它涉及到UI设计、事件处理以及对Android布局机制的理解。本课程表布局旨在提供一种用户友好的界面,用于展示和交互,如点击事件,来帮助学生或教师管理他们的...
本篇将深入探讨如何创建一个可动态布局的Android抽屉组件,提供一个完整的实现案例源码。 首先,抽屉组件的基本概念:DrawerLayout是Android提供的一个视图容器,它可以包含两个主要区域——主内容视图和一个或多个...
Android布局工具是开发Android应用程序时不可或缺的利器,它极大地简化了UI设计过程,使得开发者能够以“所见即所得”的方式构建用户界面。这款工具允许设计师和开发者直观地拖放控件,调整它们的属性,并实时预览...