[Android 學習筆記] 圖檔顯示使用教學

在 Android 開發中,我們可以透過使用 ImageView 元件顯示圖檔。接下來我們示範使用 Spinner 元件選擇欲顯示的圖檔,並於 ImageView 中顯示。


建立照片圖檔資源
app/src/res/drawable-xxx 於目錄下建立圖檔

ImageView 元件
<ImageView android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/imageView"
android:src="drawable/image01"
android:scaleType="fitStart" />

使用程式碼指定 ImageView 元件顯示的圖檔
image.setImageResource(R.drawable.image);

贊助本站 (Donate)