Android线性布局LinearLayout

本文详细介绍了Android线性布局LinearLayout的使用,包括纵向和横向排列方式,对齐方式如设置边距,以及权重概念的解释,探讨了权重分配对布局的影响。
摘要由CSDN通过智能技术生成

1. 排列方式

  • 纵向:android:orientation="vertical"
  • 横向:android:orientation="horizontal"
    系统默认采用横向布局

2. 对齐方式

  两种设置边距的方式,分别是 

  1. android:paddingStart="150dp" //和左侧的边距

  2. android:paddingTop="50dp" //和顶部的边距

3. 权重

   线性布局中可以规定控件的权重,通过android:layout_weight=""实现。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:weightSum="3">


    <ImageView
        android:layout_width="0dp"
        android:layout_height="match_parent"
       
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值