<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android=http://schemas.android.com/apk/res/android
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Choose Picture" android:id="@+id/ChoosePictureButton"/>
<ImageView android:layout_width="wrap_content"android:layout_height=
"wrap_content" android:id="@+id/ChosenImageView"></ImageView>
</LinearLayout>
以上就是所需的全部內(nèi)容;現(xiàn)在有一幅用戶選擇的圖像作為位圖對(duì)象顯示給用戶,如圖3-3所示。讓我們看看如何使用這張位圖作為起點(diǎn)來實(shí)現(xiàn)其他的操作。