要实现这种效果,
子view在父的之上,
关键代码如下
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray"
android:clipChildren="false"
android:clipToPadding="false">
<LinearLayout
android:id="@+id/ShopDetailBuyLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@color/white"
android:clipChildren="false"
android:clipToPadding="false"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/View_margin_10"
android:layout_marginRight="@dimen/View_margin_10"
android:clipChildren="false"
android:clipToPadding="false"
android:paddingTop="@dimen/View_margin_10">
<ImageView
android:id="@+id/ShopDetailFrameIv"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_alignParentLeft="true"
android:background="@drawable/gray_stroke_bg1"
android:padding="@dimen/View_margin_5"
android:scaleType="fitCenter"
android:src="@drawable/img_artbean"
android:translationY="@dimen/ShopDetailIvTransition" />
主要用到的属性
1 、clipToPadding就是说控件的绘制区域是否在padding里面的,true的情况下如果你设置了padding那么绘制的区域就往里缩,
2、clipChildren是指子控件是否超过padding区域,
这两个属性默认是true的,所以在设置了padding情况下,默认滚动是在padding内部的,要达到上面的效果主要把这两个属性设置了false那么这样子控件就能画到padding的区域了。
3、位置上移
android:translationY
<dimen name="ShopDetailIvTransition">-20sp</dimen>
参考:
http://www.cnblogs.com/xitang/p/3606578.html
http://www.tuicool.com/articles/32YRJrq