linearlayout 中ImageView 居中等问题

本文介绍如何使用LinearLayout实现子控件的居中布局,并通过设置权重来调整控件的相对位置。利用LinearLayout的layout_weight属性,可以轻松地将图片置于中间位置,同时在两侧添加其他控件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

linearlayout  下的子控件使用android:layout_gravity=”center”  控件居左,没有达到居中的效果, 父窗体只能指定一种控件摆放方向 横向还是竖向

下面我弄了三个linearlayout  横向排在一个一块 ,中间是个图片

确保图片在中间位置,剩下的两边添加控件显示信息, 只需要设置三个linearlayout 设置权重 就可以

<LinearLayout
        android:id="@+id/imagemain"
        android:layout_width="match_parent"
        android:layout_height="360dp"
        android:background="#fffffff"
        >
        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"></LinearLayout>
        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_gravity="center_horizontal"
            android:layout_weight="1">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginTop="20dp"
                android:src="@drawable/car" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            >
        </LinearLayout>
    </LinearLayout>

内部布局gravity
<LinearLayout android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:gravity="bottom" >

 

转载于:https://www.cnblogs.com/zuochanzi/p/9092809.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值