コラージュの最終プロジェクトに取り組んでおり、Android の Bluetooth 通知コードを探して立ち往生しています。Bluetooth がオンまたはオフになるたびに通知するコードが必要です。
質問する
784 次
2 に答える
2
OK then do it like that when you bluetooth is on or off
private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
if (BluetoothDevice.ACTION_FOUND.equals(action)) {
int icon = R.drawable.nishansahib1; // icon from resources
CharSequence tickerText = "SatShreeAkal"; // ticker-text
long when = System.currentTimeMillis(); // notification time
//Context context = getApplicationContext(); // application Context
CharSequence contentTitle = ""; // message title
//
CharSequence contentText= "YPUR BLUETOOTH IS ON OR OFF"; // message text
final int NOTIF_ID = 1234;
Intent notificationIntent = new Intent(context, your classname);//if u want to call a class
notificationIntent.putExtra("DISPLAY",contentText);//if u want to pass intent
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
NotificationManager notofManager = (NotificationManager)context. getSystemService(Context.NOTIFICATION_SERVICE);
// the next two lines initialize the Notification, using the configurations above
Notification notification = new Notification(icon, tickerText, when);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
notification.defaults = Notification.DEFAULT_SOUND;
notofManager.notify(NOTIF_ID,notification);
}
于 2012-07-06T07:01:29.770 に答える
1
アクティビティクラスでBluetoothがオンまたはオフに切り替えられたときに受信するには、コードにブロードキャストレシーバーを追加する必要があります。ご参考までに :
public void onCreate() {
...
IntentFilter filter1 = new IntentFilter(BluetoothDevice.ACTION_ACL_CONNECTED);
IntentFilter filter2 = new IntentFilter(BluetoothDevice.ACTION_ACL_DISCONNECT_REQUESTED);
IntentFilter filter3 = new IntentFilter(BluetoothDevice.ACTION_ACL_DISCONNECTED);
this.registerReceiver(mReceiver, filter1);
this.registerReceiver(mReceiver, filter2);
this.registerReceiver(mReceiver, filter3);
}
//The BroadcastReceiver that listens for bluetooth broadcasts
private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
if (BluetoothDevice.ACTION_FOUND.equals(action)) {
... //Device found
}
else if (BluetoothAdapter.ACTION_ACL_CONNECTED.equals(action)) {
... //Device is now connected
}
else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) {
... //Done searching
}
else if (BluetoothAdapter.ACTION_ACL_DISCONNECT_REQUESTED.equals(action)) {
... //Device is about to disconnect
}
else if (BluetoothAdapter.ACTION_ACL_DISCONNECTED.equals(action)) {
... //Device has disconnected
}
}
于 2012-07-06T06:23:53.783 に答える