使用内置Gallery应用程序选择图像(5)

<?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>

以上就是所需的全部内容;现在有一幅用户选择的图像作为位图对象显示给用户,如图3-3所示。让我们看看如何使用这张位图作为起点来实现其他的操作。

读书导航