欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android学习笔记之——UI组件/LinearLayout(线性布局)

程序员文章站 2022-07-07 20:12:28
Android学习笔记之——UI组件/LinearLayout(线性布局)最常用属性android:idandroid:layout_widthandroid:layout_heightandroid:orientationandroid:backgroundandroid:layout_paddingandroid:layout_margin

LinearLayout(线性布局)
最常用属性
android:id
android:layout_width
android:layout_height
android:orientation
android:background
android:layout_padding
android:layout_margin

<?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"
    tools:context=".MainActivity">

    <LinearLayout
        android:id="@+id/ll_1"
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:orientation="vertical"
        android:background="#000000"
        android:padding="20dp">
        <View
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#FF0033">

        </View>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:orientation="horizontal"
        android:background="#0066FF"
        android:layout_margin="15dp"
        >
        <View
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:background="#ff9900"
            android:layout_weight="1"></View>
        <View
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:background="#440033"
            android:layout_weight="1"></View>
        <View
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:background="#446633"
            android:layout_weight="2"></View> //layout_weight是权重
    </LinearLayout>

</LinearLayout>

Android学习笔记之——UI组件/LinearLayout(线性布局)

本文地址:https://blog.csdn.net/weixin_43561635/article/details/107189096