日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

Android_神奇的android:clipChildren属性

發(fā)布時(shí)間:2025/5/22 159 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Android_神奇的android:clipChildren属性 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

正文

一、效果圖

看到這個(gè)圖時(shí)你可以先想想如果是你,你怎么實(shí)現(xiàn)這個(gè)效果。馬上想到用RelativeLayout?NO,NO,NO,,,

?

二、實(shí)現(xiàn)代碼

<?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"?>

????<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、只需在根節(jié)點(diǎn)設(shè)置android:clipChildren為false即可,默認(rèn)為true

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

3、android:clipChildren的意思:是否限制子View在其范圍內(nèi)

?

三、 其他

在做動(dòng)畫的時(shí)候非常有用,博大精深啊。。。。。。

?

轉(zhuǎn):http://www.cnblogs.com/over140/p/3508335.html

總結(jié)

以上是生活随笔為你收集整理的Android_神奇的android:clipChildren属性的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。