美文网首页
Android中clipChildren属性的用法

Android中clipChildren属性的用法

作者: 沉默的菋道 | 来源:发表于2017-01-06 14:45 被阅读0次

    在说clipChildren属性之前首先看一个效果图:

    为了做出这种效果图你能想到的方式是什么呢?用RelativeLayout?还是.......

    其实很简单,只要用了这个神奇的属性后这个效果很容易就可以实现,下面是注意点:

    1、只需在根节点设置Android:clipChildren为false即可,默认为true,注意:一定是在布局文件的根节点设置,否则不起作用

    2、可以通过android:layout_gravity控制超出的部分如何显示

    3、android:clipChildren的意思:是否限制子View在其范围内,我们将其值设置为false后那么当子控件的高度高于父控件时也会完全显示,而不会被压缩

    布局文件如下:

    [html]view plaincopy

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:clipChildren="false">

    android:layout_width="match_parent"

    android:layout_height="48dip"

    android:background="#B0C4DE"

    android:orientation="horizontal"

    android:layout_alignParentBottom="true">

    android:layout_width="0dip"

    android:layout_height="fill_parent"

    android:layout_weight="1.0"

    android:scaleType="fitCenter"

    android:src="@drawable/ic_launcher"/>

    android:layout_width="0dip"

    android:layout_height="fill_parent"

    android:layout_weight="1.0"

    android:scaleType="fitCenter"

    android:src="@drawable/ic_launcher"/>

    android:layout_width="0dip"

    android:layout_height="70dip"

    android:layout_gravity="bottom"

    android:layout_weight="1.0"

    android:scaleType="fitCenter"

    android:src="@drawable/ic_launcher"/>

    android:layout_width="0dip"

    android:layout_height="fill_parent"

    android:layout_weight="1.0"

    android:scaleType="fitCenter"

    android:src="@drawable/ic_launcher"/>

    android:layout_width="0dip"

    android:layout_height="fill_parent"

    android:layout_weight="1.0"

    android:scaleType="fitCenter"

    android:src="@drawable/ic_launcher"/>

    转自:http://blog.csdn.net/flymoon1201/article/details/44646473

    相关文章

      网友评论

          本文标题:Android中clipChildren属性的用法

          本文链接:https://www.haomeiwen.com/subject/evpdettx.html