blob: 9b5f237d8793c0e87ee6d2544d892bd29d0f8889 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
package com.android.systemui.quicksettings;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothAdapter.BluetoothStateChangeCallback;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.View.OnLongClickListener;
import com.android.systemui.R;
import com.android.systemui.statusbar.phone.QuickSettingsContainerView;
import com.android.systemui.statusbar.phone.QuickSettingsController;
import com.android.systemui.statusbar.policy.BluetoothController;
public class BluetoothTile extends QuickSettingsTile implements BluetoothStateChangeCallback{
private boolean enabled = false;
private boolean connected = false;
private BluetoothAdapter mBluetoothAdapter;
public BluetoothTile(Context context, LayoutInflater inflater,
QuickSettingsContainerView container, QuickSettingsController qsc) {
super(context, inflater, container, qsc);
mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
enabled = mBluetoothAdapter.isEnabled();
connected = mBluetoothAdapter.getConnectionState() == BluetoothAdapter.STATE_CONNECTED;
onClick = new OnClickListener() {
@Override
public void onClick(View v) {
if(enabled){
mBluetoothAdapter.disable();
}else{
mBluetoothAdapter.enable();
}
}
};
onLongClick = new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
startSettingsActivity(android.provider.Settings.ACTION_BLUETOOTH_SETTINGS);
return true;
}
};
mBroadcastReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
if(intent.getAction().equals(BluetoothAdapter.ACTION_STATE_CHANGED)){
int state = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE,
BluetoothAdapter.ERROR);
enabled = (state == BluetoothAdapter.STATE_ON);
}
if(intent.getAction().equals(BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED)){
int state = intent.getIntExtra(BluetoothAdapter.EXTRA_CONNECTION_STATE,
BluetoothAdapter.STATE_DISCONNECTED);
connected = (state == BluetoothAdapter.STATE_CONNECTED);
}
applyBluetoothChanges();
}
};
mIntentFilter = new IntentFilter();
mIntentFilter.addAction(BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED);
mIntentFilter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
}
void checkBluetoothState() {
enabled = mBluetoothAdapter.getState() == BluetoothAdapter.STATE_ON;
connected = mBluetoothAdapter.getConnectionState() == BluetoothAdapter.STATE_CONNECTED;
}
private void applyBluetoothChanges(){
if(enabled){
if(connected){
mDrawable = R.drawable.ic_qs_bluetooth_on;
}else{
mDrawable = R.drawable.ic_qs_bluetooth_not_connected;
}
mLabel = mContext.getString(R.string.quick_settings_bluetooth_label);
}else{
mDrawable = R.drawable.ic_qs_bluetooth_off;
mLabel = mContext.getString(R.string.quick_settings_bluetooth_off_label);
}
updateQuickSettings();
}
@Override
void onPostCreate() {
BluetoothController controller = new BluetoothController(mContext);
controller.addStateChangedCallback(this);
checkBluetoothState();
applyBluetoothChanges();
super.onPostCreate();
}
@Override
public void onBluetoothStateChange(boolean on) {
this.enabled = on;
applyBluetoothChanges();
}
}
|