RelativeLayout的一个特性

实现效果为将ic_launcher压在上面图片(图片大小不固定)的最下面

**

>下面代码有误请直接查看评论,感谢“魏成林 ”的指正!!!

**

xml代码

<?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">
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <ImageView
            android:id="@+id/bannerImg"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:src="@drawable/img" />

            <ImageView
                android:id="@+id/activity_entrance"
                android:layout_width="60dp"
                android:layout_alignParentBottom="true"
                android:layout_height="60dp"
                android:layout_gravity="right"
                android:src="@mipmap/ic_launcher" />
    </RelativeLayout>
</LinearLayout>

但是上面xml文件实现的效果图如下

可以看到使用 android:layout_alignParentBottom=”true”属性的时候高度是按照match_parent计算的

解决办法在RelativeLayout外面嵌套一层ScrollView

xml代码

<?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">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fillViewport="true">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <ImageView
                android:id="@+id/bannerImg"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:adjustViewBounds="true"
                android:src="@drawable/img" />

            <ImageView
                android:id="@+id/activity_entrance"
                android:layout_width="60dp"
                android:layout_height="60dp"
                android:layout_alignParentBottom="true"
                android:layout_gravity="right"
                android:src="@mipmap/ic_launcher" />
        </RelativeLayout>
    </ScrollView>
</LinearLayout>

我只是记录了一下踩到坑的解决办法,但是为什么不知道原因,哪位大神如果知道原因,请在下面留言,感谢!!!

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值