麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

RelativeLayout布局

2019-11-09 15:45:26
字體:
供稿:網(wǎng)友

RelativeLayout布局

相對布局(RelativeLayout)將子視圖元素以相對位置顯示。

居中顯示

layout_centerInParent:相對于父元素完全居中l(wèi)ayout_centerHorizontal:相對于父元素水平居中l(wèi)ayout_centerVertical:相對于父元素垂直居中
<?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">    <!-- 居中顯示 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerInParent="true"        android:text="centerInParent"        android:background="#ffa6a5aa"/>    <!-- 水平居中 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerHorizontal="true"        android:text="centerHorizontal"        android:background="#ffa6a5aa"/>    <!-- 垂直居中 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerVertical="true"        android:text="centerVertical"        android:background="#ffa6a5aa"/></RelativeLayout>顯示如下

相對于父控件的位置

layout_alignParentTop:父元素的上邊layout_alignParentBottom:父元素的下邊layout_alignParentLeft:父元素的左邊layout_alignParentRight:父元素的右邊
<?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">    <!-- 左上角顯示 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentLeft="true"        android:layout_alignParentTop="true"        android:text="Left|Top"        android:background="#ffa6a5aa"/>    <!-- 右上角顯示 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentRight="true"        android:layout_alignParentTop="true"        android:text="Right|Top"        android:background="#ffa6a5aa"/>    <!-- 左下角顯示 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentLeft="true"        android:layout_alignParentBottom="true"        android:text="Left|Bottom"        android:background="#ffa6a5aa"/>    <!-- 右下角顯示 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentRight="true"        android:layout_alignParentBottom="true"        android:text="Right|Bottom"        android:background="#ffa6a5aa"/></RelativeLayout>顯示如下

相對于其他控件的位置

layout_above:某元素的上邊layout_below:某元素的下邊layout_toRightOf:某元素的右邊layout_toLeftOf:某元素的左邊
<?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">    <!-- 居中顯示,作為坐標(biāo)元素 -->    <TextView        android:id="@+id/tv_center"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerInParent="true"        android:text="center"        android:textSize="32dp"        android:background="#ffffcc00"/>    <!-- 顯示在左上角 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_toLeftOf="@id/tv_center"        android:layout_above="@id/tv_center"        android:text="above|toLeftOf"        android:background="#ffa6a5aa"/>    <!-- 顯示在右下角 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_toRightOf="@id/tv_center"        android:layout_below="@id/tv_center"        android:text="below|toRightOf"        android:background="#ffa6a5aa"/></RelativeLayout>顯示如下

對齊方式

layout_alignTop:上邊與某元素的上邊對齊layout_alignBottom:下邊與某元素的下邊對齊layout_alignLeft:左邊與某元素的左邊對齊layout_alignRight:右邊與某元素的右邊對齊layout_alignBaseline:基準(zhǔn)線與某元素的基準(zhǔn)線對齊
<?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">    <!-- 居中顯示,作為坐標(biāo)元素 -->    <TextView        android:id="@+id/tv_center"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerInParent="true"        android:text="center"        android:textSize="32dp"        android:background="#ffffcc00"/>    <!-- 左對齊 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignLeft="@id/tv_center"        android:layout_above="@id/tv_center"        android:text="alignLeft"        android:background="#ffa6a5aa"/>    <!-- 右對齊 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignRight="@id/tv_center"        android:layout_below="@id/tv_center"        android:text="alignRight"        android:background="#ffa6a5aa"/>    <!-- 上對齊 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignTop="@id/tv_center"        android:layout_toLeftOf="@id/tv_center"        android:text="alignTop"        android:background="#ffa6a5aa"/>    <!-- 下對齊 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignBottom="@id/tv_center"        android:layout_toRightOf="@id/tv_center"        android:text="alignBottom"        android:background="#ffa6a5aa"/>    <!-- 基準(zhǔn)線對齊 -->    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignBaseline="@id/tv_center"        android:text="alignBaseline"        android:layout_toLeftOf="@id/tv_center"        android:background="#ffa6a5aa"/></RelativeLayout>顯示如下
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 污版视频在线观看 | 国产亚洲精品久久久久久久软件 | 成人在线视频在线观看 | 欧美一级黄色免费看 | 国产日产精品一区四区介绍 | 色骚综合| 中文字幕一区二区三区久久 | 娇妻被各种姿势c到高潮小说 | 九九热色 | 色97在线| 91中文在线 | 国产精品视频yy9299一区 | 亚洲日本高清 | 欧美一级特黄a | 日本精品久久久一区二区三区 | 精品国产一区二区三区四区阿崩 | 视频一区国产精品 | 成人毛片视频免费看 | 欧美一级做一a做片性视频 日韩黄色片免费看 | av资源在线| 成年毛片 | 成人羞羞在线观看网站 | 国产噜噜噜噜久久久久久久久 | 舌头伸进添的我好爽高潮网站 | 国产一区二区三区在线观看视频 | a视频在线免费观看 | 欧美日韩亚洲一区二区三区 | 狠狠操天天射 | 久久久久久久亚洲精品 | 亚洲白嫩在线观看 | 男人的天堂毛片 | 亚洲综人网| 久久国产秒| 久久国产精品二国产精品中国洋人 | 国产手机在线视频 | 91天堂国产在线 | 国产在线精品一区二区三区不卡 | 成年免费大片黄在线观看岛国 | 久草在线视频在线 | 国产乱淫av片免费 | 久久久久久久久日本理论电影 |