Android APP開發活用範例速查大辭典(Ch0109-單純利用ImageButton載入資源檔的圖片)

Android APP開發活用範例速查大辭典(Ch0109-單純利用ImageButton載入資源檔的圖片)

Android APP開發活用範例速查大辭典(Ch0109-單純利用ImageButton載入資源檔的圖片)

 

GUI-XML

<?xml version=”1.0″ encoding=”utf-8″?>
<RelativeLayout xmlns:android=”http://schemas.android.com/apk/res/android”
android:layout_width=”fill_parent”
android:layout_height=”fill_parent” >

<ImageButton
android:id=”@+id/imageButton”
android:layout_width=”wrap_content”
android:layout_height=”wrap_content”
android:layout_centerInParent=”true”
android:src=”@drawable/ic_launcher” />

</RelativeLayout>

 

 

 

 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *