2

setBeamPushUrisCallback を使用して、galaxy nexus (4.2.1 を実行) から nexus7 (4.2 を実行) にコンテンツ プロバイダー uri を送信しようとしています。両方のデバイスにアプリがインストールされていますが、Bluetooth への NFC ハンドオーバー中に転送が失敗します。例外は次のとおりです。

02-10 13:33:32.762: D/BluetoothOppUtility(23916): closeSendFileInfo:  uri=content://com.android.beam.Beam/msgs/2
02-10 13:33:32.762: W/dalvikvm(23916): threadid=21: thread exiting with uncaught exception (group=0x40d70930)
02-10 13:33:32.770: E/AndroidRuntime(23916): FATAL EXCEPTION: Bluetooth Share Service
02-10 13:33:32.770: E/AndroidRuntime(23916): java.lang.NullPointerException
02-10 13:33:32.770: E/AndroidRuntime(23916):    at com.android.bluetooth.opp.BluetoothOppUtility.closeSendFileInfo(BluetoothOppUtility.java:327)
02-10 13:33:32.770: E/AndroidRuntime(23916):    at com.android.bluetooth.opp.BluetoothOppService.insertShare(BluetoothOppService.java:614)
02-10 13:33:32.770: E/AndroidRuntime(23916):    at com.android.bluetooth.opp.BluetoothOppService.access$1800(BluetoothOppService.java:69)
02-10 13:33:32.770: E/AndroidRuntime(23916):    at com.android.bluetooth.opp.BluetoothOppService$UpdateThread.run(BluetoothOppService.java:472)
02-10 13:33:32.941: E/NfcHandover(693): Handover transfer failed

マニフェストでプロバイダーを宣言し (アプリケーションで問題なく uri を照会できました)、ビームが成功したときに起動されるアクティビティのインテント フィルターを追加しました。私は何を間違っていますか?また、ハンドオーバーが Wi-Fi ではなく常に Bluetooth に行われるのはなぜですか?

アップデート:

アプリからの関連するコードは次のとおりです。

アクティビティは CreateBeamUrisCallback を実装し、onCreate で:

 mNfcAdapter = NfcAdapter.getDefaultAdapter(this);
 if (mNfcAdapter == null) return;  // NFC not available on this device
 mNfcAdapter.setBeamPushUrisCallback(this, this);

オーバーライドされたメソッド:

@Override
public Uri[] createBeamUris(NfcEvent event) {
    Uri uri = Uri.parse("content://com.android.beam.Beam/msgs/2");
    return new Uri[]{uri};
}

マニフェスト:

 <provider
    android:name="com.example.android.beam.BeamContentProvider"
    android:authorities="com.android.beam.Beam"
    android:exported="true"/>
 <activity android:name="com.example.android.beam.Beam"
            android:label="@string/app_name"
            android:launchMode="singleTop">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
         <intent-filter>
             <action android:name="android.intent.action.VIEW" />
            <action android:name="android.intent.action.EDIT" />
            <action android:name="android.intent.action.PICK" />
            <category android:name="android.intent.category.DEFAULT" />
            <data android:mimeType="vnd.android.cursor.item/vnd.com.example.msgs" />
        </intent-filter>
    </activity>
4

1 に答える 1

0

問題が見つかりました。コンテンツ プロバイダーでオーバーライドopenFile(Uri uri, String mode)する必要がありました。そこでは、データベースにクエリを実行し、カーソルから値を取得し、それらをファイルに書き込み、ファイルの を返す必要がありParcelFileDescriptorました。

于 2013-02-11T20:34:12.240 に答える