本文主要是介绍ViewGroup中clipChildren属性的用法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
来自ViewGroup中的属性clipChildren
用于定义一个子元素是否被限制在其父元素中进行绘制。通常用于动画效果中绘制需要超出原有尺寸限制的元素时使用。在这种情况下,需要将该属性值设置为false
以确保该元素可以超出边界。缺省值为true
,也即子元素不可以超出父元素的边界。
需要重点注意的是,属性值
clipChildren
需要被设置到爷爷节点上。
以下为布局的示例:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_height="match_parent"android:layout_width="match_parent"android:clipChildren="false"android:orientation="vertical"><Viewandroid:layout_width="match_parent"android:layout_height="0dp"android:layout_weight="1"/><LinearLayoutandroid:layout_width="match_parent"android:layout_height="48dp"android:orientation="horizontal"
这篇关于ViewGroup中clipChildren属性的用法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!