2

我尝试在 android 中获得自定义开关首选项。这是我的代码

 switch_widget.xml
<Switch xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@+id/customswitch"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:focusable="false"
   android:clickable="false" 
   />
  preference xml file :
 <com.tnavitech.utils.CustomSwitch
       android:title="Hide app icon" 
       android:key="hideicon"
       android:defaultValue="false"
       android:disableDependentsState="true"
       android:widgetLayout="@layout/switch_widget" 
    />

然后我扩展“SwitchPreference”,并在“onBindView”类中,并在 OnPreferenceChangeListener 中处理开关状态:

public class CustomSwitch extends SwitchPreference {

    Switch swit;

    public CustomCheckbox(Context context, AttributeSet attrs) {
    super(context, attrs);

   }

@Override
protected void onBindView(final View rootView) {
    ViewGroup viewGroup= (ViewGroup)rootView;
    super.onBindView(rootView);

    if(swit==null){

        swit  = (Switch) rootView.findViewById(R.id.customswitch);
    }

    this.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {
        @Override
        public boolean onPreferenceChange(Preference arg0, Object arg1) {

            if (arg1 instanceof Boolean) {
                Boolean enabled = (Boolean) arg1;
                if(enabled){
                    swit.setChecked(true); /// cant toggle switch here
                    Toast.makeText(getContext(), "on", Toast.LENGTH_SHORT).show();


                } else {
                    Toast.makeText(getContext(), "off", Toast.LENGTH_SHORT).show();

                    swit.setSelected(false);     ///cant toggle switch here
            }
            }



            return true;
        }
    });

}

在 setOnPreferenceChangeListener 中,我无法打开或关闭开关。我怎么能解决这个问题?谢谢!

4

3 回答 3

0

我正在开发在具有 API 15 的设备上运行的应用程序,因此必须解决此问题。该解决方案将为您的 SwitchPreference 提供两种不同的布局,而不是一种处理切换切换的布局。Switch 必须是 clickable = false 否则您的 SwitchPreference 将无法处理任何点击。

首先是“开启状态”开关布局,其中按钮使用表示开启按钮的可绘制对象:

<?xml version="1.0" encoding="utf-8"?>
<Switch xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/custom_switch_item"
    android:layout_width="48dp"
    android:layout_height="wrap_content"
    android:textColor="@android:color/white"
    android:textIsSelectable="false"
    android:textSize="0sp"
    android:button="@drawable/ico_toggle_on" //HERE IS DIFFERENCE BETWEEN THESE LAYOUTS
    android:thumb="@android:color/transparent"
    android:track="@android:color/transparent"
    android:clickable="false"
    android:focusable="false"
    android:gravity="center_vertical" />

第二种布局是关闭状态:

<?xml version="1.0" encoding="utf-8"?>
<Switch xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/custom_switch_item"
    android:layout_width="48dp"
    android:layout_height="wrap_content"
    android:textColor="@android:color/white"
    android:textIsSelectable="false"
    android:textSize="0sp"
    android:button="@drawable/ico_toggle_off" //HERE IS DIFFERENCE BETWEEN THESE LAYOUTS
    android:thumb="@android:color/transparent"
    android:track="@android:color/transparent"
    android:clickable="false"
    android:focusable="false"
    android:gravity="center_vertical" />

然后最后在您的 SwitchPreference OnPreferenceChangeListener 上设置的 Activity 或 Fragment 中切换这两种布局,如下所示:

final SwitchPreference expertSettingsPref = (SwitchPreference) findPreference("expert_settings");
    if (expertSettingsPref != null) {
        expertSettingsPref.setOnPreferenceChangeListener(new Preference.OnPreferenceChangeListener() {
            @Override
            public boolean onPreferenceChange(Preference preference, Object newValue) {
                preference.setWidgetLayoutResource((Boolean)newValue ? R.layout.custom_switch_preference_on : R.layout.custom_switch_preference_off);
                return true;
            }
        });
    }
于 2016-07-26T16:29:38.717 回答
0

在 PreferenceFragmentCompat 中将 SwitchPreferenceCompat 与 androidX 一起使用,以下内容可按您的要求工作。

public class SettingsPageFragment extends PreferenceFragmentCompat {
    @Override
    public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
        setPreferencesFromResource(R.xml.root_preferences, rootKey);

        final SwitchPreferenceCompat switchPreference = (SwitchPreferenceCompat) findPreference("switch");
        if(switchPreference != null){
            switchPreference.setOnPreferenceChangeListener(new Preference.OnPreferenceChangeListener() {
                @Override
                public boolean onPreferenceChange(Preference preference, Object newValue) {
                    // get the incoming value
                    boolean isOn = (Boolean) newValue;

                    // get the incoming control
                    SwitchPreferenceCompat switchPreference = (SwitchPreferenceCompat) preference;

                    // set the incoming value to the incoming control
                    switchPreference.setChecked(isOn);

                    // do whatever else you wanted to when this event fires

                }
            });
        }
    }

我怀疑您的代码不起作用的原因是“机智”可能超出了听众的范围。在我的示例中,它作为 Preference 首选项传入。

于 2020-01-14T17:00:45.547 回答
0

具有自定义布局的 SwitchPreference 侦听器的副本。

SwitchView 的 id 应该@android:id/switch_widget代替@+id/custom_switch_item或任何其他自定义 id。

SwitchPreference类的源码中,我们可以找到代码:

View switchView = view.findViewById(AndroidResources.ANDROID_R_SWITCH_WIDGET);

并在AndroidResources

static final int ANDROID_R_SWITCH_WIDGET = android.R.id.switch_widget;

所以只有 id =@android:id/switch_widget可以正确找到。

这是一个关于 SwitchPreference 的 widgetLayout 的演示:

<Switch xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/switch_widget"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center_vertical" />
于 2020-01-19T14:03:22.733 回答