Answers:
默认位置已经在/ bluetooth文件夹中的外部SD卡上。
无法在Android 4.1 Jelly Bean上进行配置:
使用附带的备用蓝牙接收器,您目前无法更改位置,因为它是硬编码的。您需要一个可在此处配置的第三方应用程序,例如蓝牙文件传输。
在./packages/apps/Bluetooth/src/com/android/bluetooth/opp/中,您可以看到它。
Constants.java定义了以下内容:
public static final String DEFAULT_STORE_SUBDIR = "/bluetooth";
BluetoothOppReceiveFileInfo.java没有位置的开关:
File receiveFile = new File(uniqueFileName);
if (sDesiredStoragePath == null) {
sDesiredStoragePath = Environment.getExternalStorageDirectory().getPath() +
Constants.DEFAULT_STORE_SUBDIR;
}
Bluetooth
内部存储上的文件夹,并在外部SD卡上创建了一个具有相同名称的新空文件夹。当我尝试传输某些内容时,它忽略了外部SD卡并重新创建了该Bluetooth
文件夹在内部存储)。