2016-02-13 88 views
0

我是新來的Android編程,我想我滑到了image.This的觀點是我的代碼(不知道這是正確的方式)重疊cardview在圖像

<?xml version="1.0" encoding="utf-8"?> 
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 

<ImageView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/ron" 
    android:scaleType="fitCenter"/> 

<android.support.v7.widget.CardView 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_gravity="center" 
    android:id="@+id/cv"> 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:padding="16dp" 
     > 

     <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:id="@+id/person_photo" 
      android:layout_alignParentLeft="true" 
      android:layout_alignParentTop="true" 
      android:layout_marginRight="16dp" 
      /> 

     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:id="@+id/person_name" 
      android:layout_toRightOf="@+id/person_photo" 
      android:layout_alignParentTop="true" 
      android:textSize="30sp" 
      /> 

     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:id="@+id/person_age" 
      android:layout_toRightOf="@+id/person_photo" 
      android:layout_below="@+id/person_name" 
      /> 

    </RelativeLayout> 

</android.support.v7.widget.CardView> 

我想要將我的Cardview滾動到圖像上,使圖像保持固定。就像歪曲圖像一樣。 enter image description here

和滾動完全的圖像應該得到隱藏後,(我不希望它在工具欄流)

enter image description here

+0

滾動視圖在哪裏? – GoRoS

回答

1

嘗試把你的CardViewScrollView,並添加CardViewmarginTop相當於到你的Image的高度。

+0

它是可滾動的,但它看起來像圖像仍然der,我在它下面滾動..你有任何鏈接或例子指向? – Rohit