0

私は、ユーザーがユーザーに提供するListViewからユーザーが選択したファイルを転送するためのプログラムを作成しようとしています。ユーザーが転送しようとしているファイルを選択すると( 「 onLongClickListenerを使用してそれを達成しました」)、この特定のコードブロックがトリガーされます。

    String mimeType = fileAction.getMimeType(rowHolder.get(position).getLabel());
            Intent playFile = new Intent();
            playFile.setAction(android.content.Intent.ACTION_SEND);
            Uri pathUri = Uri.parse("file://" + currentPath +     rowHolder.get(position).getLabel());
        playFile.setDataAndType(pathUri, mimeType);
        startActivity(playFile);

問題は、このタイプのインテントを処理できるアプリケーションのオプションのリストからBluetoothオプションを選択すると、["この部分は自動です"]何も起こらないことです。この問題は、Bluetoothをクリックしているときにのみ発生します。Gmail、バンプなどの他のすべてのオプションは完全に機能しています。任意のヘルプ/ガイダンスをいただければ幸いです。前もって感謝します。また、権限のセットが必要な数より少ないと思われる場合に備えて、これは私のマニフェストファイルです。AndroidManifestファイル:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="org.sample.test"
  android:versionCode="2"
  android:versionName="1.1">

<uses-sdk android:minSdkVersion="3" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />

<application 
    android:icon="@drawable/app_icon" 
    android:label="@string/app_name" 
    android:debuggable="false"
    android:theme="@android:style/Theme.NoTitleBar" >
    <activity android:name=".Main"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity 
        android:name=".Preferences"
        android:label="@string/preferences" >
    </activity>
    <activity 
        android:name=".SearchFileSystem"
        android:label="@string/search" >
        <intent-filter>
            <action android:name="android.intent.action.SEARCH" />
        </intent-filter>
        <meta-data 
            android:name="android.app.searchable"
            android:resource="@xml/searchable" />
    </activity>

</application>
</manifest> 
4

1 に答える 1

1

このコードを試してください::このリンクを参照してください

String mimeType = fileAction.getMimeType(rowHolder.get(position).getLabel());
Intent intent = new Intent();  
intent.setAction(android.content.Intent.ACTION_SEND);  
intent.setType(mimeType);
Uri pathUri = Uri.parse("file://" + currentPath + rowHolder.get(position).getLabel());
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(pathUri ) );  
startActivity(intent);

更新しました::

File file = new File(Path.toString());  
intent.setDataAndType(Uri.fromFile(file), mimeType);
于 2012-06-03T05:09:33.673 に答える