Color picker pref: allow tap also on the text to show the picker

other prefs like SwitchPref work this way

Signed-off-by: xyyx <xyyx@mail.ru>
This commit is contained in:
ezio84
2017-09-07 01:12:19 +02:00
committed by hungphan2001
parent 249c4a342a
commit 38fa7994db

View File

@@ -100,6 +100,13 @@ public class ColorPickerPreference extends Preference implements
mView = view;
super.onBindViewHolder(view);
view.itemView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
showDialog(null);
}
});
widgetFrameView = ((LinearLayout) view
.findViewById(android.R.id.widget_frame));