仿喜马拉雅app底部导航栏五个按钮-clipChildren属性

clipChildren属性

clipChildren属性表示是否限制子控件在该容器所在的范围内,clipChildren属性配合layout_gravity属性,可以用来设置多余部分的显示位置,我这里举一个简单的例子,比如喜马拉雅FM这个应用的首页:


大家注意看这个应用底部导航栏中中间一个是要比另外四个高的,这种效果很多人就会想到使用一个RelativeLayout布局来实现,其实不用那么麻烦,这种效果一个clipChildren属性就能实现,示例Demo如下:

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <RelativeLayout  
  3.     xmlns:android="http://schemas.android.com/apk/res/android"  
  4.     xmlns:tools="http://schemas.android.com/tools"  
  5.     android:layout_width="match_parent"  
  6.     android:layout_height="match_parent"  
  7.     android:clipChildren="false"  
  8.     tools:context="org.lenve.clipchildren.MainActivity">  
  9.   
  10.     <LinearLayout  
  11.         android:layout_width="match_parent"  
  12.         android:layout_height="48dp"  
  13.         android:layout_alignParentBottom="true"  
  14.         android:background="#03b9fc"  
  15.         android:orientation="horizontal">  
  16.   
  17.         <ImageView  
  18.             android:layout_width="0dp"  
  19.             android:layout_height="match_parent"  
  20.             android:layout_weight="1"  
  21.             android:src="@mipmap/ic_launcher"/>  
  22.   
  23.         <ImageView  
  24.             android:layout_width="0dp"  
  25.             android:layout_height="match_parent"  
  26.             android:layout_weight="1"  
  27.             android:src="@mipmap/ic_launcher"/>  
  28.   
  29.         <ImageView  
  30.             android:layout_width="0dp"  
  31.             android:layout_height="72dp"  
  32.             android:layout_gravity="bottom"  
  33.             android:layout_weight="1"  
  34.             android:src="@mipmap/ic_launcher"/>  
  35.   
  36.         <ImageView  
  37.             android:layout_width="0dp"  
  38.             android:layout_height="match_parent"  
  39.             android:layout_weight="1"  
  40.             android:src="@mipmap/ic_launcher"/>  
  41.   
  42.         <ImageView  
  43.             android:layout_width="0dp"  
  44.             android:layout_height="match_parent"  
  45.             android:layout_weight="1"  
  46.             android:src="@mipmap/ic_launcher"/>  
  47.     </LinearLayout>  
  48. </RelativeLayout>  

大家看只需要在根节点添加clipChildren属性,然后在第三个ImageView上添加layout_gravity属性即可,layout_gravity属性值为bottom表示控件大小超出后控件底部对齐。效果如下:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

韩~晓强

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值