設定影象資源
<ImageView
android:id="@+id/imgExample"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
...
/>
使用 XML 屬性將 drawable 設定為 ImageView
的內容:
android:src="@drawable/android2"
以程式設計方式設定 drawable:
ImageView imgExample = (ImageView) findViewById(R.id.imgExample);
imgExample.setImageResource(R.drawable.android2);