您好,登錄后才能下訂單哦!
[SOLUTION]
修改\frameworks\base\core\java\android\bluetooth\BluetoothDevice.java文件createBond(),
//added MTK, Replace the headset name here.
+++ public static final String BLACK_LIST_BOND_MOTO_S305 = "moto s305";
public boolean createBond() {
if (sService == null) {
Log.e(TAG, "BT not enabled. Cannot create bond to Remote Device");
return false;
}
+++ //added MTK
+++ if(BLACK_LIST_BOND_MOTO_S305.equals(getAliasName())){
+++ if (DBG) Log.d(TAG, "Do not bond Mota S305 headset.");
+++ return false;
+++ }
+++ // added end
try {
if (DBG) Log.d(TAG, "createBond: " + this);
return sService.createBond(this);
} catch (RemoteException e) {Log.e(TAG, "", e);}
return false;
}
如此修改會(huì)彈出配對(duì)失敗提示,
提示來自于\packages\apps\Settings\src\com\android\settings\bluetooth\BluetoothDevicePreference.java中,
private void pair() {
if (!mCachedDevice.startPairing()) {
Utils.showError(getContext(), mCachedDevice.getName(),
R.string.bluetooth_pairing_error_message);
}
}
如需修改彈框提示,可以在這里添加,也可不修改此處!
//added MTK, Replace the headset name here.
+++ public static final String BLACK_LIST_BOND_MOTO_S305 = "moto s305";
private void pair() {
if (!mCachedDevice.startPairing()) {
+++ //added MTK
+++ if(BLACK_LIST_BOND_MOTO_S305.equals(mCachedDevice.getName())){
+++ Utils.showError(getContext(), mCachedDevice.getName(),
+++ "Can not bond Mota S305");
+++ }else {
Utils.showError(getContext(), mCachedDevice.getName(),
R.string.bluetooth_pairing_error_message);
+++ }
+++ //added end
}
}
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。