关于Android中View显示到父布局之外

 最近做一个项目要将一个View显示到其父布局之外。我们经常用的就是clipChildren属性。实现方法如下:

clipChildren属性默认设置为true,要想将view显示到父布局之外,就需要clip设置为false。

注意设置clipChildren属性是在view父布局的父布局中。


<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clipChildren="false"
    android:gravity="center">

    <RelativeLayout
        android:id="@+id/main_layout"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@color/colorPrimary">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="80dp"
            android:layout_marginLeft="-20dp"
            android:layout_marginRight="-20dp"
            android:background="@color/colorAccent" />

    </RelativeLayout>


</RelativeLayout>


效果如下图所示:



但是存在一个问题,clipChildren属性只能作用于在xml文件中书写的View空间,如果在代码中通过addView添加的控件不能实现这个效果,最后效果如下图:


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值