我有一個Bitmap
(1538 x 2000)並將其設置爲src
的ImageView
但是當我運行應用程序沒有顯示出來(但活動的背景顏色),我讀了關於位圖尺寸限制的事情,但如果問題是爲什麼我可以通過相同設備上的庫查看此位圖的限制?ImageView什麼也沒有
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/iv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitCenter"
android:adjustViewBounds="true"
android:src="@drawable/pic3"/>
</FrameLayout>
任何幫助將不勝感激
你可以發佈你的XML佈局嗎? – Nanoc
嘗試使用[Picasso](http://square.github.io/picasso/)獲取大圖像 – khyper
我認爲你會得到BitmapOutofMemory異常,縮小你的位圖並在imageview中使用。 –