它需要在項(xiàng)目的layout/main.xml 文件中添加如下內(nèi)容:
<?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"
>
<ImageView android:id="@+id/ReturnedImageView"android:layout_width=
"wrap_content"android:layout_height="wrap_content"></ImageView>
</LinearLayout>
為了完成上述示例,以下是AndroidManifest.xml 文件的內(nèi)容。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1"
android:versionName="1.0"package="com.apress.proandroidmedia.ch1
.cameraintent">
<application android:icon="@drawable/icon" android:label=
"@string/app_name">
<activity android:name=".CameraIntent" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="4" />
</manifest>
在此示例中,Camera應(yīng)用程序在一個(gè)通過意圖傳遞的附加值(extra)中返回圖像,而該意圖將在onActivityResult方法中傳遞給主調(diào)活動(dòng)。附加值的名稱為“data”,它包含一個(gè)Bitmap對(duì)象,需要從泛型對(duì)象將它強(qiáng)制轉(zhuǎn)換過來。
//從意圖中獲取附加值
Bundle extras = intent.getExtras();
//從附加值中獲取返回的圖像
Bitmap bmp = (Bitmap) extras.get("data");