首页 > 移动平台 > 详细

<1>AndroidStudio初体验--布局练习

时间:2021-05-04 10:13:50      阅读:29      评论:0      收藏:0      [点我收藏+]

参考设计图:

技术分享图片

实验成果:

技术分享图片

 

采用了线性布局与相对布局 

实验代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#EED2EE"


tools:context=".MainActivity">

//第0层
<LinearLayout
android:id = "@+id/li_0"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/white"
android:orientation="horizontal"
android:layout_margin="10dp"

></LinearLayout>

//第1层
<LinearLayout
android:id = "@+id/li_1"
android:layout_width="match_parent"
android:layout_height="150dp"
android:orientation="horizontal"
android:padding="7dp">

<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:background="#EE799F" />

</LinearLayout>

//第2层
<LinearLayout
android:id="@+id/li_2"
android:layout_width="match_parent"
android:layout_height="90dp"
android:orientation="horizontal"
>

<View
android:layout_width="80dp"
android:layout_height="match_parent"
android:background="#BCD2EE"
android:layout_margin="8dp"
/>

<View
android:layout_width="80dp"
android:layout_height="match_parent"
android:background="#BCD2EE"
android:layout_margin="8dp"
/>

<View
android:layout_width="80dp"
android:layout_height="match_parent"
android:background="#BCD2EE"
android:layout_margin="8dp"
/>

<View
android:layout_width="80dp"
android:layout_height="match_parent"
android:background="#BCD2EE"
android:layout_margin="8dp"
/>

</LinearLayout>>

//第3层
<RelativeLayout
android:id = "@+id/li_3"
android:layout_width="match_parent"
android:layout_height="200dp"
android:padding="7dp">

<View
android:id="@+id/view_1"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/white"
android:layout_margin="10dp"/>
<View
android:id="@+id/view_2"
android:layout_width="120dp"
android:layout_height="match_parent"
android:background="#66ff33"
android:layout_below="@id/view_1"
android:layout_margin="10dp"/>

<View
android:id="@+id/view_3"
android:layout_width="120dp"
android:layout_height="130dp"
android:background="#66ff33"
android:layout_below="@id/view_1"
android:layout_toRightOf="@id/view_2"
android:layout_margin="10dp"/>

<View
android:layout_width="120dp"
android:layout_height="match_parent"
android:background="#66ff33"
android:layout_below="@id/view_1"
android:layout_toRightOf="@id/view_3"
android:layout_margin="10dp"/>

</RelativeLayout>

</LinearLayout>


<1>AndroidStudio初体验--布局练习

原文:https://www.cnblogs.com/fefll/p/14728472.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!