RelativeLayout 相对布局笔记
程序员文章站
2022-06-26 15:18:53
一 、相对布局RelativeLayout 相对布局RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"1 页面右下布局android:layout_alignParentBottom="true" android:layout_alignParentRight="true"!2 在**@+id/view_1**方块的右面android:layout_toRightOf="@...
一 、相对布局
RelativeLayout 相对布局
RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
1 页面右下布局
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"!
2 在**@+id/view_1**方块的右面
android:layout_toRightOf="@id/view_1"
3 在**@+id/view_1**方块的下面
android:layout_below="@+id/view_1"
线性和相对代码综合:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:id="@+id/view_1"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="#000000"/>
<View
android:id="@+id/view_2"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="#00FF80"
android:layout_below="@+id/view_1"/>
<LinearLayout
android:id="@+id/ll_1"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_below="@id/view_2"
android:orientation="horizontal"
android:background="#AEB404"
android:padding="15dp" >
<View
android:layout_width="100dp"
android:layout_height="match_parent"
android:background="#B40404"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:padding="15dp">
<View
android:id="@+id/view_3"
android:layout_width="100dp"
android:layout_height="match_parent"
android:background="#00FF80"
android:layout_marginRight="15dp"
/>
<View
android:id="@+id/view_4"
android:layout_width="100dp"
android:layout_height="match_parent"
android:background="#A9A9F5"
android:layout_toRightOf="@id/view_3"
/>
</RelativeLayout>
</LinearLayout>
</RelativeLayout>
注意:android:id=“xxxxx”
使用:驼峰式命名法
本文地址:https://blog.csdn.net/weixin_48536465/article/details/108854071
上一篇: 利用Numpy进行鸢尾花数据集分析
推荐阅读
-
Android开发中进行相对布局实例
-
【原】《DIV+CSS商业案例与网页布局开发精讲》读书笔记(2)_html/css_WEB-ITnose
-
多次点击LinearLayout或RelativeLayout布局后才得到响应
-
Extjs学习笔记之七 布局_extjs
-
Android布局之RelativeLayout相对布局
-
Android编程之绝对布局AbsoluteLayout和相对布局RelativeLayout实例详解
-
Android布局之RelativeLayout相对布局
-
Android中关于相对布局RelativeLayout的技巧汇总
-
Android编程之绝对布局AbsoluteLayout和相对布局RelativeLayout实例详解
-
android LinearLayout和RelativeLayout组合实现精确布局方法介绍