關於設定藍芽的可見性和掃瞄周圍藍芽裝置的方法,需要用到廣播接收器
package tjj.bluetooth2;
import android.bluetooth.bluetoothadapter;
import android.bluetooth.bluetoothdevice;
import android.content.broadcastreceiver;
import android.content.context;
import android.content.intent;
import android.content.intentfilter;
import android.os.bundle;
import android.view.view;
import android.widget.button;
public class testbluetooth2activity extends activity
private button.onclicklistener discoverbuttonlistener = new button.onclicklistener()
};private button.onclicklistener scanbuttonlistener = new button.onclicklistener()
};}class bluetoothreceiver extends broadcastreceiver
}
Android藍芽操作
藍芽是一種支援裝置短距離傳輸資料的無線技術。android在2.0以後提供了這方面的支援。從查詢藍芽裝置到能夠相互通訊要經過幾個基本步驟 本機做為伺服器 1.設定許可權 在manifest中配置 uses permission android name android.permission.blue...
Android 藍芽開發基礎操作
android name android.permission.bluetooth admin android name android.permission.bluetooth android name android.permission.access coarse location bluet...
android開發筆記藍芽
相關類 1.bluetoothadapter 顧名思義,藍芽介面卡,直到我們建立bluetoothsocket連線之前,都要不斷操作它 bluetoothadapter 裡的方法很多,常用的有以下幾個 canceldiscovery 取消搜尋 disable 關閉藍芽 enable 開啟藍芽,這個方...