短い時間前、私はAndroidの携帯電話にBluetoothデバイスを接続しようとして同様の問題がありました。あなたのデバイスのプロファイルは異なっていますが、私は解決策は同じだと思います。
あなたがandroid.bluetooth
という名前のプロジェクトでパッケージを作成し、そこに以下のIBluetoothA2dp.aidlを置く必要がある最初:
package android.bluetooth;
import android.bluetooth.BluetoothDevice;
/**
* System private API for Bluetooth A2DP service
*
* {@hide}
*/
interface IBluetoothA2dp {
boolean connectSink(in BluetoothDevice device);
boolean disconnectSink(in BluetoothDevice device);
boolean suspendSink(in BluetoothDevice device);
boolean resumeSink(in BluetoothDevice device);
BluetoothDevice[] getConnectedSinks();
BluetoothDevice[] getNonDisconnectedSinks();
int getSinkState(in BluetoothDevice device);
boolean setSinkPriority(in BluetoothDevice device, int priority);
int getSinkPriority(in BluetoothDevice device);
boolean connectSinkInternal(in BluetoothDevice device);
boolean disconnectSinkInternal(in BluetoothDevice device);
}
次に、これらの機能にアクセスするには、プロジェクト内の以下のクラスを置く:
最後に
public class BluetoothA2dpConnection {
private IBluetoothA2dp mService = null;
public BluetoothA2dpConnection() {
try {
Class<?> classServiceManager = Class.forName("android.os.ServiceManager");
Method methodGetService = classServiceManager.getMethod("getService", String.class);
IBinder binder = (IBinder) methodGetService.invoke(null, "bluetooth_a2dp");
mService = IBluetoothA2dp.Stub.asInterface(binder);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SecurityException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
public boolean connect(BluetoothDevice device) {
if (mService == null || device == null) {
return false;
}
try {
mService.connectSink(device);
} catch (RemoteException e) {
e.printStackTrace();
return false;
}
return true;
}
public boolean disconnect(BluetoothDevice device) {
if (mService == null || device == null) {
return false;
}
try {
mService.disconnectSink(device);
} catch (RemoteException e) {
e.printStackTrace();
return false;
}
return true;
}
}
、1つのブルーを選んで、あなたのA2DPデバイスを接続しますetoothDeviceをペアにしたデバイスのリストから取得し、connect
メソッドのパラメータとして送信します。正しいプロファイルのデバイスを選択してください。そうでなければ、例外が発生します。
私はアンドロイドバージョン2.3の電話機でこの解決策をテストしましたが、うまくいきました。
ご迷惑をおかけします。私はこれがあなたを助けることを望む。
これはどの電話ですか、デバイスのネクサスラインに設定されていますか? – nandeesh
私が使用している電話はGalaxy S3 w/AT&Tです。私はそれがそこに存在するかどうかを確信することはできませんが、私は想像していました。 – JamesB41