Android APP開發活用範例速查大辭典(Ch0135-使用ImageView設定圖片外框)

Android APP開發活用範例速查大辭典(Ch0135-使用ImageView設定圖片外框)

Android APP開發活用範例速查大辭典(Ch0135-使用ImageView設定圖片外框)

 

完整GUI-XML

<?xml version=”1.0″ encoding=”utf-8″?>
<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”
android:layout_width=”match_parent”
android:layout_height=”match_parent”
android:gravity=”center”
android:orientation=”vertical” >

<ImageView
android:id=”@+id/ImageView”
android:layout_width=”wrap_content”
android:layout_height=”wrap_content”
android:background=”@drawable/ch0135_bg_frame”
android:src=”@drawable/ic_launcher” />

</LinearLayout>

 

 

 


發表迴響

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