- Fix wiring for the "At night" section. Remove fragile index-based logic by adding value support to DropDownPreference. - Actually refresh zen config if it changes. - Only show the enter zen dialog for user-initiated changes. Change-Id: Ic3a3b9864942fb3ebf18cd838339de2ff28f9394
122 lines
3.9 KiB
Java
122 lines
3.9 KiB
Java
/*
|
|
* Copyright (C) 2014 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.notification;
|
|
|
|
import android.content.Context;
|
|
import android.preference.Preference;
|
|
import android.util.AttributeSet;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.widget.AdapterView;
|
|
import android.widget.ArrayAdapter;
|
|
import android.widget.Spinner;
|
|
import android.widget.AdapterView.OnItemSelectedListener;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
public class DropDownPreference extends Preference {
|
|
private final Context mContext;
|
|
private final ArrayAdapter<String> mAdapter;
|
|
private final Spinner mSpinner;
|
|
private final ArrayList<Object> mValues = new ArrayList<Object>();
|
|
|
|
private Callback mCallback;
|
|
|
|
public DropDownPreference(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public DropDownPreference(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
mContext = context;
|
|
mAdapter = new ArrayAdapter<String>(mContext,
|
|
android.R.layout.simple_spinner_dropdown_item);
|
|
|
|
mSpinner = new Spinner(mContext);
|
|
|
|
mSpinner.setVisibility(View.INVISIBLE);
|
|
mSpinner.setAdapter(mAdapter);
|
|
mSpinner.setOnItemSelectedListener(new OnItemSelectedListener() {
|
|
@Override
|
|
public void onItemSelected(AdapterView<?> parent, View v, int position, long id) {
|
|
setSelectedItem(position);
|
|
}
|
|
|
|
@Override
|
|
public void onNothingSelected(AdapterView<?> parent) {
|
|
// noop
|
|
}
|
|
});
|
|
setPersistent(false);
|
|
setOnPreferenceClickListener(new OnPreferenceClickListener() {
|
|
@Override
|
|
public boolean onPreferenceClick(Preference preference) {
|
|
mSpinner.performClick();
|
|
return true;
|
|
}
|
|
});
|
|
}
|
|
|
|
public void setDropDownWidth(int dimenResId) {
|
|
mSpinner.setDropDownWidth(mContext.getResources().getDimensionPixelSize(dimenResId));
|
|
}
|
|
|
|
public void setCallback(Callback callback) {
|
|
mCallback = callback;
|
|
}
|
|
|
|
public void setSelectedItem(int position) {
|
|
final Object value = mValues.get(position);
|
|
if (mCallback != null && !mCallback.onItemSelected(position, value)) {
|
|
return;
|
|
}
|
|
mSpinner.setSelection(position);
|
|
setSummary(mAdapter.getItem(position));
|
|
final boolean disableDependents = value == null;
|
|
notifyDependencyChange(disableDependents);
|
|
}
|
|
|
|
public void setSelectedValue(Object value) {
|
|
final int i = mValues.indexOf(value);
|
|
if (i > -1) {
|
|
setSelectedItem(i);
|
|
}
|
|
}
|
|
|
|
public void addItem(int resId, Object value) {
|
|
mAdapter.add(mContext.getResources().getString(resId));
|
|
mValues.add(value);
|
|
}
|
|
|
|
@Override
|
|
protected void onBindView(View view) {
|
|
super.onBindView(view);
|
|
if (view.equals(mSpinner.getParent())) return;
|
|
if (mSpinner.getParent() != null) {
|
|
((ViewGroup)mSpinner.getParent()).removeView(mSpinner);
|
|
}
|
|
final ViewGroup vg = (ViewGroup)view;
|
|
vg.addView(mSpinner, 0);
|
|
final ViewGroup.LayoutParams lp = mSpinner.getLayoutParams();
|
|
lp.width = 0;
|
|
mSpinner.setLayoutParams(lp);
|
|
}
|
|
|
|
public interface Callback {
|
|
boolean onItemSelected(int pos, Object value);
|
|
}
|
|
} |