2
に私は、AndroidのBluetooth実装を使用してAndroidアプリケーションを開発しています。 BluetoothがAndroidエミュレータでテストできるかどうかを知りたいユーザーはBluetoothを使用してAndroidエミュレータからファイルを送信できますか?は、Bluetoothを使ってファイルを送信するアンドロイド
に私は、AndroidのBluetooth実装を使用してAndroidアプリケーションを開発しています。 BluetoothがAndroidエミュレータでテストできるかどうかを知りたいユーザーはBluetoothを使用してAndroidエミュレータからファイルを送信できますか?は、Bluetoothを使ってファイルを送信するアンドロイド
これらは、私は私のアプリでこれを使用
* No support for placing or receiving actual phone calls. You can simulate phone calls (placed and received) through the emulator console, however.
* No support for USB connections
* No support for camera/video capture (input).
* No support for device-attached headphones
* No support for determining connected state
* No support for determining battery charge level and AC charging state
* No support for determining SD card insert/eject
* No support for Bluetooth
エミュレータ制限事項エミュレータの制限事項です....
try {
File myFile = new File("filepath");
MimeTypeMap mime = MimeTypeMap.getSingleton();
String ext=myFile.getName().substring(myFile.getName().lastIndexOf(".")+1);
String type = mime.getMimeTypeFromExtension(ext);
Intent sharingIntent = new Intent("android.intent.action.SEND");
sharingIntent.setType(type);
sharingIntent.putExtra("android.intent.extra.STREAM",Uri.fromFile(myFile));
startActivity(Intent.createChooser(sharingIntent,"Share using"));
}
catch(Exception e){
Toast.makeText(getBaseContext(), e.getMessage(),Toast.LENGTH_SHORT).show();
}