2015-09-19 88 views
0

我在android中有一個大圖像(顯示如下),我想在android xml文件中使用imageview顯示第二個圖像(如下所示)。以下是我的xml.file。使用imageview顯示圖像的中心

<ImageView 
      android:id="@+id/imageView" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:background="@drawable/image2" 
      android:contentDescription="@string/place_holder" 
      android:scaleType="centerCrop"/> 

第一圖象 large picture

第二次圖像

small picture

我的代碼上面仍然顯示原始圖像,請有沒有辦法從原始圖像顯示的第二圖像進行。在此先感謝

回答

1

問題是由設置解決「機器人:adjustViewBounds」到「真」:

<ImageView 
      android:id="@+id/imageView" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:background="@drawable/image2" 
      android:contentDescription="@string/place_holder" 
      android:scaleType="centerCrop" 
      android:adjustViewBounds="true"/>