android Activity相对布局的使用方法

时间:2022-12-11 01:12:50 

相对布局要比前面讲的线性布局和表格布局要灵活一些,所以平常用得也是比较多的。相对布局控件的位置是与其周围控件的位置相关的,从名字可以看出来,这些位置都是相对的,确定出了其中一个控件的位置就可以确定另一个控件的位置了。
本次实验就是显示如下的activity:

android Activity相对布局的使用方法

其中只有2个button,1个textview,1个edittext。

在相对布局中,一般用到的控件属性解释如下:
在相对布局中有如下属性,解释如下:
android:layout_above  为将该控件的底部放在指定id控件的上方
android:layout_below   同理类似,将该控件的顶部放在指定id控件的下方
android:layout_toLeftOf  将该控件的右端紧挨着放在指定id控件的左端。
android:layout_toRightOf  将该控件的左端紧挨着放在指定id控件的右端
android:layout_alignParentRight  为true时将该控件右端与父控件右端对齐
android:layout_alignParentLeft       为true时将该控件左端与父控件左端对齐
android:layout_alignParentTop       为true时将该控件顶端与父控件顶端对齐
android:layout_alignParentBottom  为true时将该控件底端与父控件底端对齐
android:layout_alignBottom   将该控件底部与指定id控件底部控件对齐
android:layout_alignLeft 将该控件左边与指定id控件左边对齐
android:layout_alignRight        将该控件右边与指定id控件右边对齐
android:layout_alignTop  将该控件顶端与指定id控件顶端对齐

实现上面activity比较简单,其xml代码如下:


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="10px" >

    <TextView
        android:id="@+id/input"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/input_dis"
        tools:context=".MainActivity" />

       <EditText
  android:id="@+id/edit"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
        android:layout_below="@id/input"
        android:background="@android:drawable/editbox_background"
        />

       <Button
  android:id="@+id/ok"
  android:layout_height="wrap_content"
  android:layout_width="wrap_content"
  android:layout_below="@id/edit"
  android:layout_alignParentRight="true"
  android:layout_marginLeft="10px"
  android:text="@string/ok" 
  />

       <Button
  android:id="@+id/cancel"
  android:layout_height="wrap_content"
  android:layout_width="wrap_content"
  android:layout_below="@id/edit"
  android:layout_toLeftOf="@id/ok"
  android:text="@string/cancel"

  />

</RelativeLayout>


 总结:activity的相对布局比较灵活,一些常见的属性也比较多,用得多自然就会了。

 
 作者:tornadomeet

标签:Activity,相对布局
0
投稿

猜你喜欢

  • Android中BroadcastReceiver(异步接收广播Intent)的使用

    2022-12-24 20:51:17
  • 基于Android实现桌面悬浮清内存app概述

    2023-05-02 22:56:35
  • Java使用Iterator迭代器遍历集合数据的方法小结

    2021-10-28 00:22:40
  • SpringBoot定时任务动态扩展ScheduledTaskRegistrar详解

    2023-04-23 08:44:06
  • 基于java实现简单发红包功能

    2023-08-09 17:06:40
  • SpringBoot 如何从容器中获取对象

    2023-12-06 08:20:40
  • SpringBoot打Jar包在命令行运行流程详解

    2023-11-24 16:53:59
  • jQuery.event.trigger()的简单解释

    2023-05-24 03:41:37
  • Android短信接收监听、自动回复短信操作例子

    2022-12-04 20:07:50
  • Spring Boot高级教程之使用Redis实现session共享

    2022-10-20 09:59:01
  • 浅析Java中对象的创建与对象的数据类型转换

    2023-11-26 09:20:07
  • java 2d画图示例分享(用java画图)

    2023-07-25 22:03:52
  • 解决Android MediaRecorder录制视频过短问题

    2023-04-24 01:47:56
  • Android 捕获运行时异常详解

    2023-12-22 21:16:30
  • spring中使用mybatis plus连接sqlserver的方法实现

    2022-11-16 12:05:09
  • Android编程实现横竖屏切换时不销毁当前activity和锁定屏幕的方法

    2022-03-08 17:38:23
  • Android自定义view实现有header和footer作为layout使用的滚动控件

    2023-07-31 19:29:54
  • Java基础详解之内存泄漏

    2022-04-14 03:45:46
  • Java新手学习之IO流的简单使用

    2023-08-09 15:57:33
  • Java 二分法检索算法代码实现详解

    2022-01-05 19:13:24
  • asp之家 软件编程 m.aspxhome.com