正文

一、效果图

android 神奇的android:clipChildren属性_第1张图片

看到这个图时你可以先想想如果是你,你怎么实现这个效果。马上想到用RelativeLayout?NO,NO,NO,,,

二、实现代码

复制代码<?xmlversion="1.0"encoding="utf-8"?>
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width
="match_parent"
android:layout_height
="match_parent"
android:clipChildren
="false"
android:orientation
="vertical">

<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width
="match_parent"
android:layout_height
="0dip"
android:layout_weight
="1.0"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height
="48dip"
android:background
="#B0C4DE"
android:orientation
="horizontal">

<ImageView
android:layout_width="0dip"
android:layout_height
="fill_parent"
android:layout_weight
="1.0"
android:scaleType
="fitCenter"
android:src
="@drawable/ic_launcher"/>

<ImageView
android:layout_width="0dip"
android:layout_height
="fill_parent"
android:layout_weight
="1.0"
android:scaleType
="fitCenter"
android:src
="@drawable/ic_launcher"/>

<ImageView
android:layout_width="0dip"
android:layout_height
="64dip"
android:layout_gravity
="bottom"
android:layout_weight
="1.0"
android:scaleType
="fitCenter"
android:src
="@drawable/ic_launcher"/>

<ImageView
android:layout_width="0dip"
android:layout_height
="fill_parent"
android:layout_weight
="1.0"
android:scaleType
="fitCenter"
android:src
="@drawable/ic_launcher"/>

<ImageView
android:layout_width="0dip"
android:layout_height
="fill_parent"
android:layout_weight
="1.0"
android:scaleType
="fitCenter"
android:src
="@drawable/ic_launcher"/>
</LinearLayout>

</LinearLayout>复制代码

代码说明:

1、只需在根节点设置android:clipChildren为false即可,默认为true

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

3、android:clipChildren的意思:是否限制子View在其范围内

更多相关文章

  1. Android 日志系统logcat内核代码分析
  2. 编写android jni代码时遇到的问题
  3. Android 代码自动提示功能
  4. android两种方式实现发送短信的功能代码
  5. Android 进阶——Android Studio 项目结构详细述及Gradle脚本语
  6. 原始Android的目标机代码结构
  7. 在Ubuntu上下载、编译和安装Android最新内核源代码(Linux Kernel)
  8. 第一行代码笔记1
  9. 第一行代码:AlertDialog

随机推荐

  1. Android多媒体数据库之MediaStore研究
  2. Webview实现Android和JS通信
  3. CAMERA(12)---[Android相机]光线传感器识
  4. android 那些事---主线程是线程不安全的
  5. android json 转换
  6. android inputType属性
  7. Android(Java):把EHCache集成到android项
  8. 搭建Android UI Testing自动化测试开发环
  9. Android系列之Android(安卓)命令行手动编
  10. Android的线程