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
|
package com.cyanogenmod.trebuchet.preference;
import android.content.Context;
import android.content.res.TypedArray;
import android.preference.DialogPreference;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.SeekBar;
import android.widget.TextView;
import com.cyanogenmod.trebuchet.R;
/**
* @author nebkat
*/
public class SeekBarDialogPreference extends DialogPreference implements SeekBar.OnSeekBarChangeListener {
private int mMax, mMin, mDefault;
private String mPrefix, mSuffix;
private TextView mValueText;
private SeekBar mSeekBar;
public SeekBarDialogPreference(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray dialogType = context.obtainStyledAttributes(attrs,
com.android.internal.R.styleable.DialogPreference, 0, 0);
TypedArray seekBarType = context.obtainStyledAttributes(attrs,
R.styleable.SeekBarDialogPreference, 0, 0);
mMax = seekBarType.getInt(R.styleable.SeekBarDialogPreference_max, 100);
mMin = seekBarType.getInt(R.styleable.SeekBarDialogPreference_min, 0);
mDefault = dialogType.getInt(com.android.internal.R.styleable.Preference_defaultValue, mMin);
mPrefix = seekBarType.getString(R.styleable.SeekBarDialogPreference_prefix);
mSuffix = seekBarType.getString(R.styleable.SeekBarDialogPreference_suffix);
if (mPrefix == null) {
mPrefix = "";
}
if (mSuffix == null) {
mSuffix = "%";
}
dialogType.recycle();
seekBarType.recycle();
}
@Override
protected View onCreateDialogView() {
LayoutInflater inflater =
(LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.seekbar_dialog, null);
mValueText = (TextView) view.findViewById(R.id.value);
mSeekBar = (SeekBar) view.findViewById(R.id.seekbar);
mSeekBar.setOnSeekBarChangeListener(this);
mSeekBar.setMax(mMax - mMin);
mSeekBar.setProgress(getPersistedInt(mDefault) - mMin);
mValueText.setText(mPrefix + getPersistedInt(mDefault) + mSuffix);
return view;
}
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
mValueText.setText(mPrefix + (progress + mMin) + mSuffix);
}
public void onStartTrackingTouch(SeekBar seekBar) {}
public void onStopTrackingTouch(SeekBar seekBar) {}
@Override
protected void onDialogClosed(boolean positiveResult) {
if (positiveResult) {
persistInt(mSeekBar.getProgress() + mMin);
}
}
}
|