RelativeLayout 相对布局笔记
程序员文章站
2022-03-26 11:40:46
一 、相对布局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
上一篇: day14装饰器
下一篇: 装饰者模式和观察者模式
推荐阅读
-
Bootstrap布局之栅格系统学习笔记
-
android 常用布局文件(LinearLayout,RelativeLayout,FrameLayout,ConstraintLayout,TableLayout)
-
android Activity相对布局的使用方法
-
Flutter学习笔记(22)--单个子元素的布局Widget
-
布局渲染笔记
-
Android布局管理器-从实例入手学习相对布局管理器的使用
-
Flutter学习笔记(23)--多个子元素的布局Widget(Rwo、Column、Stack、IndexedStack、Table、Wrap)
-
Android学习笔记之——UI组件/RelativeLayout(相对布局)
-
Bootstrap布局之栅格系统学习笔记
-
视图下拉列表接收控制器传来的值,并选中下拉类表中该值相对应的选项(新手笔记,请各位大神指教)