Android设置android:clipChildren达到的特殊UI设计效果

在Android的布局XML文件中,有一个不常用的属性android:clipChildren,该属性值可设为true或者false。
该属性控制Android的一个子view是否运行超越父控件边界放置。Android系统默认赋予该属性值是true,即不允许超越所在父布局的边界。如果设置为false,则表示允许该子view超越父布局的边界。
当把android:clipChildren的属性设置为false后,在Android的UI设计中会产生一些比较有趣的设计效果,比如下面一个在LinearLayout布局中简单水平并排放置的若干ImageView效果,如图:


其实现代码(布局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"    android:clipChildren="false"    android:orientation="vertical" >    <LinearLayout        android:layout_width="match_parent"        android:layout_height="100dip"        android:background="#e57373" />    <LinearLayout        android:layout_width="match_parent"        android:layout_height="50dip"        android:background="#2196f3"        android:orientation="horizontal" >        <ImageView            android:layout_width="wrap_content"            android:layout_height="match_parent"            android:src="@drawable/ic_launcher" />        <ImageView            android:layout_width="wrap_content"            android:layout_height="50dip"            android:layout_gravity="bottom"            android:src="@drawable/ic_launcher" />        <ImageView            android:layout_width="wrap_content"            android:layout_height="70dip"            android:layout_gravity="bottom"            android:src="@drawable/ic_launcher" />        <ImageView            android:layout_width="wrap_content"            android:layout_height="90dip"            android:layout_gravity="bottom"            android:src="@drawable/ic_launcher" />        <ImageView            android:layout_width="wrap_content"            android:layout_height="110dip"            android:layout_gravity="bottom"            android:src="@drawable/ic_launcher" />        <ImageView            android:layout_width="wrap_content"            android:layout_height="130dip"            android:layout_gravity="bottom"            android:src="@drawable/ic_launcher" />        <ImageView            android:layout_width="wrap_content"            android:layout_height="150dip"            android:layout_gravity="bottom"            android:src="@drawable/ic_launcher" />        <ImageView            android:layout_width="wrap_content"            android:layout_height="170dip"            android:layout_gravity="bottom"            android:src="@drawable/ic_launcher" />    </LinearLayout>    <LinearLayout        android:layout_width="match_parent"        android:layout_height="100dip"        android:background="#4dd0e1" /></LinearLayout>


android:layout_gravity="bottom" , 告知Android系统要从底部向上绘制该子view。

更多相关文章

  1. UI布局相关
  2. Android之相对布局
  3. android:scrollbarStyle属性及滚动条和分割线覆盖问题
  4. android 相对定位布局方向详解
  5. android 布局详解
  6. Android中的五大布局
  7. RelativeLayout的各种属性整理
  8. android之layout布局和ListView中的一些属性介绍
  9. android 控件属性大全

随机推荐

  1. 对Task和Activity在ANDROID中的解释
  2. 四十五、android camera
  3. Android WebView与 JS 的交互方式
  4. 百度android定位SDK问题
  5. Android-开发搭建
  6. android之常用知识点(一)
  7. android中线程进程模型
  8. 对Android系统权限的认识
  9. android 仿QQ界面
  10. Android关于分屏的知识总结