2017-10-04 128 views
1

我想在可繪製文件夾的圖像視圖中顯示圖像。圖像大小僅爲400 k,但高度過長。 400 * 3777(寬*高)只是想顯示該圖像。如果我使用完全顯示的另一個圖像。nestedscrollview大圖像不顯示在圖像視圖android

<?xml version="1.0" encoding="utf-8"?> 
    <android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:app="http://schemas.android.com/apk/res-auto" 
     xmlns:card_view="http://schemas.android.com/apk/res-auto" 
     xmlns:tools="http://schemas.android.com/tools" 

     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:orientation="vertical"> 

      <android.support.design.widget.AppBarLayout 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:theme="@style/AppTheme.AppBarOverlay"> 

       <android.support.v7.widget.Toolbar 
        android:id="@+id/toolbar" 
        android:layout_width="match_parent" 
        android:layout_height="?attr/actionBarSize" 
        android:background="@color/apps_color" 
        app:popupTheme="@style/AppTheme.PopupOverlay"> 

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

      </android.support.design.widget.AppBarLayout> 

      <ImageView 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:adjustViewBounds="true" 
       android:scaleType="fitXY" 
       android:src="@drawable/support_faq" 

       /> 
     </LinearLayout> 

    </android.support.v4.widget.NestedScrollView> 
+0

給高度圖像視圖像400dp或任何其他。 –

+0

如果我固定高度圖像不好看 – Tariqul

+0

然後刪除嵌套的滾動視圖。 –

回答

0

使用相同的圖像,但降低了該圖像的分辨率。從400 x 3777到您可以使用400 x 1080。

+0

如何減少400 * 3777(寬*高)圖像。 – Tariqul

+0

您需要使用其他圖像編輯器,比如photoshop或其他。你也可以使用繪圖(如果你正在使用windows) –

+1

Bitmap yourBitmap; Bitmap resized = Bitmap.createScaledBitmap(yourBitmap,newWidth,newHeight,true); –