我一直在尝试编写一个程序来传输用户从我提供给用户的 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);
问题是当我从可以处理这种类型的Intent [“这部分是自动的”]的应用程序选项列表中选择蓝牙选项时,没有任何反应。只有在我点击蓝牙时才会出现此问题。所有其他选项,如GMail,Bump等都运作良好。任何帮助/指导将不胜感激。提前致谢。此外,这是我的清单文件,以防似乎权限集小于所需。 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>
答案 0 :(得分:1)
尝试此代码::请参阅此LINK
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);