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
|
package com.android.systemui.quicksettings;
import android.app.ActivityManagerNative;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.RemoteException;
import android.os.UserHandle;
import android.view.LayoutInflater;
import android.view.View.OnClickListener;
import android.view.View.OnLongClickListener;
import android.view.ViewGroup;
import android.widget.TextView;
import com.android.systemui.R;
import com.android.systemui.statusbar.phone.QuickSettingsController;
import com.android.systemui.statusbar.phone.PhoneStatusBar;
import com.android.systemui.statusbar.phone.QuickSettingsContainerView;
import com.android.systemui.statusbar.phone.QuickSettingsTileView;
public class QuickSettingsTile {
protected final Context mContext;
protected final ViewGroup mContainerView;
protected final LayoutInflater mInflater;
protected QuickSettingsTileView mTile;
protected OnClickListener onClick;
protected OnLongClickListener onLongClick;
protected int mTileLayout;
protected BroadcastReceiver mBroadcastReceiver;
protected IntentFilter mIntentFilter;
protected int mDrawable;
protected String mLabel;
protected PhoneStatusBar mStatusbarService;
protected QuickSettingsController mQsc;
public QuickSettingsTile(Context context, LayoutInflater inflater, QuickSettingsContainerView container, QuickSettingsController qsc) {
mContext = context;
mContainerView = container;
mInflater = inflater;
mDrawable = R.drawable.ic_notifications;
mLabel = mContext.getString(R.string.quick_settings_label_enabled);
mStatusbarService = qsc.mStatusBarService;
mQsc = qsc;
mTileLayout = R.layout.quick_settings_tile_generic;
}
public void setupQuickSettingsTile(){
createQuickSettings();
onPostCreate();
registerQuickSettingsReceiver();
updateQuickSettings();
mTile.setOnClickListener(onClick);
mTile.setOnLongClickListener(onLongClick);
}
void createQuickSettings(){
mTile = (QuickSettingsTileView) mInflater.inflate(R.layout.quick_settings_tile, mContainerView, false);
mTile.setContent(mTileLayout, mInflater);
mContainerView.addView(mTile);
}
private void registerQuickSettingsReceiver() {
if(mBroadcastReceiver != null && mIntentFilter != null){
mContext.registerReceiver(mBroadcastReceiver, mIntentFilter);
}
}
void onPostCreate(){
}
void updateQuickSettings(){
TextView tv = (TextView) mTile.findViewById(R.id.tile_textview);
tv.setCompoundDrawablesWithIntrinsicBounds(0, mDrawable, 0, 0);
tv.setText(mLabel);
}
void startSettingsActivity(String action){
Intent intent = new Intent(action);
startSettingsActivity(intent);
}
void startSettingsActivity(Intent intent) {
startSettingsActivity(intent, true);
}
private void startSettingsActivity(Intent intent, boolean onlyProvisioned) {
if (onlyProvisioned && !mStatusbarService.isDeviceProvisioned()) return;
try {
// Dismiss the lock screen when Settings starts.
ActivityManagerNative.getDefault().dismissKeyguardOnNextActivity();
} catch (RemoteException e) {
}
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
mContext.startActivityAsUser(intent, new UserHandle(UserHandle.USER_CURRENT));
mStatusbarService.animateCollapsePanels();
}
}
|