Android UI

Android clipChild属性应用

2018-06-26  本文已影响334人  猪_队友
image.png

如果我们要实现这个布局,一般都是用相对布局RelativeLayout来实现,但是有个更简单的多的方法。

clipChildren 属性

这个属性我们不常用,他的意思是是否裁剪子view,用的时候注意添加android:layout_gravity位置靠下还是靠哪里。

这是效果图~

image.png
image.png

这是代码~

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/colorAccent"
    android:clipChildren="false"
    tools:context="org.lenve.myviewpagercards2.Main2Activity">

   <LinearLayout
     
       android:orientation="horizontal"
       android:layout_alignParentBottom="true"
       android:background="@color/colorPrimary"
       android:layout_width="match_parent"
       android:layout_height="50dp">
       <ImageView
           android:layout_width="0dp"
           android:layout_height="match_parent"
           android:layout_weight="1"
           android:src="@mipmap/ic_launcher"/>
       <ImageView

           android:layout_width="0dp"
           android:layout_height="match_parent"
           android:layout_weight="1"
           android:src="@mipmap/ic_launcher"/>
       <ImageView
           android:layout_gravity="bottom"
           android:layout_width="0dp"
           android:layout_height="72dp"
           android:layout_weight="1"
           android:src="@mipmap/ic_launcher"/>
       <ImageView
           android:layout_width="0dp"
           android:layout_height="match_parent"
           android:layout_weight="1"
           android:src="@mipmap/ic_launcher"/>
       <ImageView
       android:layout_width="0dp"
       android:layout_height="match_parent"
       android:layout_weight="1"
       android:src="@mipmap/ic_launcher"/>
   </LinearLayout>
</RelativeLayout>

大家可以点个关注,告诉我大家想要深入探究哪些问题,希望看到哪方面的文章,我可以免费给你写专题文章。。哈哈。。。
希望大家多多支持。。你的一个关注,是我坚持的最大动力。。

上一篇下一篇

猜你喜欢

热点阅读