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.app.ActivityManagerNative;
import android.content.ContentResolver;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.RemoteException;
import android.os.UserHandle;
import android.provider.Settings;
import android.view.LayoutInflater;
import android.view.View;
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 implements OnClickListener {
protected final Context mContext;
protected QuickSettingsTileView mTile;
protected OnClickListener mOnClick;
protected OnLongClickListener mOnLongClick;
protected final int mTileLayout;
protected int mDrawable;
protected String mLabel;
protected PhoneStatusBar mStatusbarService;
protected QuickSettingsController mQsc;
public QuickSettingsTile(Context context, QuickSettingsController qsc) {
this(context, qsc, R.layout.quick_settings_tile_generic);
}
public QuickSettingsTile(Context context, QuickSettingsController qsc, int layout) {
mContext = context;
mDrawable = R.drawable.ic_notifications;
mLabel = mContext.getString(R.string.quick_settings_label_enabled);
mStatusbarService = qsc.mStatusBarService;
mQsc = qsc;
mTileLayout = layout;
}
public void setupQuickSettingsTile(LayoutInflater inflater, QuickSettingsContainerView container) {
mTile = (QuickSettingsTileView) inflater.inflate(R.layout.quick_settings_tile, container, false);
mTile.setContent(mTileLayout, inflater);
container.addView(mTile);
onPostCreate();
updateQuickSettings();
mTile.setOnClickListener(this);
mTile.setOnLongClickListener(mOnLongClick);
}
void onPostCreate(){}
public void onDestroy() {}
public void onReceive(Context context, Intent intent) {}
public void onChangeUri(ContentResolver resolver, Uri uri) {}
public void updateResources() {
if(mTile != null) {
updateQuickSettings();
}
}
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();
}
@Override
public final void onClick(View v) {
mOnClick.onClick(v);
ContentResolver resolver = mContext.getContentResolver();
boolean shouldCollapse = Settings.System.getIntForUser(resolver,
Settings.System.QS_COLLAPSE_PANEL, 0, UserHandle.USER_CURRENT) == 1;
if (shouldCollapse) {
mQsc.mBar.collapseAllPanels(true);
}
}
}
|