Bug: 320709814 Test: atest ArrowPreferenceTest Change-Id: Id1ed44554010ae0df901cceba2624a1b56661df6
56 lines
1.9 KiB
Java
56 lines
1.9 KiB
Java
/*
|
|
* Copyright (C) 2023 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.accessibility;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import androidx.core.content.res.TypedArrayUtils;
|
|
|
|
import com.android.settings.R;
|
|
|
|
/**
|
|
* A settings preference with colored rounded rectangle background and an arrow icon on the right.
|
|
*/
|
|
public class ArrowPreference extends BackgroundPreference {
|
|
|
|
public ArrowPreference(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr,
|
|
int defStyleRes) {
|
|
super(context, attrs, defStyleAttr, defStyleRes);
|
|
setBackground(
|
|
com.android.settingslib.widget.mainswitch.R.drawable.settingslib_switch_bar_bg_on);
|
|
setWidgetLayoutResource(R.layout.preference_widget_arrow);
|
|
}
|
|
|
|
public ArrowPreference(@NonNull Context context, @Nullable AttributeSet attrs,
|
|
int defStyleAttr) {
|
|
this(context, attrs, defStyleAttr, 0);
|
|
}
|
|
|
|
public ArrowPreference(@NonNull Context context, @Nullable AttributeSet attrs) {
|
|
this(context, attrs, TypedArrayUtils.getAttr(context,
|
|
androidx.preference.R.attr.preferenceStyle,
|
|
android.R.attr.preferenceStyle));
|
|
}
|
|
|
|
public ArrowPreference(@NonNull Context context) {
|
|
this(context, null);
|
|
}
|
|
}
|