前文讲了关于clidChild的应用,这里还有一个clipToPadding 的属性,作用是类似的。是否裁剪边界Padding。
最终希望这样的效果:
image.png
布局如下
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:clipChildren="false"
tools:context="cn.pencilnews.android.fragment.MyProjectFragment">
<ImageView
android:padding="5dp"
android:id="@+id/img_add"
android:layout_marginTop="15dp"
android:layout_marginRight="20dp"
android:layout_alignParentRight="true"
android:src="@drawable/img_add"
android:layout_width="26dp"
android:layout_height="26dp" />
<RelativeLayout
android:id="@+id/rel_project"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginTop="25dp">
<ImageView
android:id="@+id/img_yellow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/img_yellow" />
<TextView
android:layout_alignBottom="@+id/img_yellow"
android:id="@+id/text_myproject"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:gravity="bottom|center_horizontal"
android:paddingBottom="5dp"
android:text="我的项目"
android:textColor="@color/tab_select"
android:textSize="18sp" />
</RelativeLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/text_index"
android:layout_below="@+id/rel_project"
android:layout_marginBottom="17dp"
android:layout_marginLeft="38dp"
android:layout_marginRight="38dp"
android:layout_marginTop="27dp"
android:clipChildren="true"></android.support.v4.view.ViewPager>
<TextView
android:id="@+id/text_index"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/li_bottom"
android:layout_alignParentBottom="true"
android:layout_marginBottom="22dp"
android:gravity="center"
android:textColor="@color/tab_unselect"
android:textSize="14dp" />
</RelativeLayout>
首先我们要在在最外边的RelativeLayout设置clidChild = false,这样ViewPager就可以在边界外面显示了。
这样我们在滑动ViewPager的时候,就可以看到它可以滑到边界之外了。
效果如下:
image.png
基本和我们想要的效果一样了,但是我们还需要第一个和第三个的边缘部分。
怎么办呢?我们在ViewPager内部也增加android:clipChildren="false",这个属性。最终就实现了这个效果。
我们来总结以下这两个android:clipChildren="false"的意义。
最外面的是让ViewPager可以向边界外拓展,可以在边界外显示。
ViewPager内部设置这个,是为了把显示当前Item之外的Item也显示出来,就是把所有边界之外的东西,统统显示。这样就可以实现我们想要的效果了。
具体代码的实现就不再这里赘述了,很简单。这里只是说明一下布局的实现,别的都和正常的一样。
大家可以点个关注,告诉我大家想要深入探究哪些问题,希望看到哪方面的文章,我可以免费给你写专题文章。。哈哈。。。
希望大家多多支持。。你的一个关注,是我坚持的最大动力。。
网友评论
xmlns:app="http://schemas.android.com/apk/res-auto";
android:id="@+id/cardview"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:cardCornerRadius="10dp"
app:cardElevation="15dp">
阴影就是这么搞,没加啥特殊的,就是阴影高度设置的问题