我想在可繪製文件夾的圖像視圖中顯示圖像。圖像大小僅爲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>
給高度圖像視圖像400dp或任何其他。 –
如果我固定高度圖像不好看 – Tariqul
然後刪除嵌套的滾動視圖。 –