3

由于PreferenceFragment在支持库中不可用,我创建了一个ListFragment向用户显示设置列表,因为我没有很多设置要显示。我还创建了一个自定义ArrayAdapter来自定义列表项。当用户检查其中一个时,我需要处理,CheckBox以便我可以保存天气或未检查。因此,如果它被选中,那么它将保持选中状态,直到用户取消选中它。如果列表中只有一个设置,但现在有 2 个设置,这会容易得多,我可能需要添加更多设置。所以我需要能够确定哪一个被检查了。我可以处理检查并取消检查,但我无法找到一种方法来确定检查了哪个。

编码

这是我的清单项目:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent"
                      android:orientation="horizontal">

<TextView android:id="@+id/pref_edit_text" android:layout_width="0dp" android:layout_height="30dp"
              android:layout_weight="5"/>
    <CheckBox android:id="@+id/pref_check_box" android:layout_width="0dp" android:layout_height="wrap_content"
              android:layout_weight="1" android:onClick="onCheckBoxClick"/>
    </LinearLayout>

<TextView android:id="@+id/pref_edit_text2" android:layout_width="match_parent"
              android:layout_height="50dp"/>

这是getView()我的适配器:

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        //mIntCheckBoxPosition = position;
        Typeface tf = Typeface.createFromAsset(mMainActivity.getAssets(), "fonts/ArchitectsDaughter.ttf");
        LayoutInflater inflater = mMainActivity.getLayoutInflater();
        View view = inflater.inflate(mIntLayoutId, parent, false);

        TextView text = (TextView) view.findViewById(R.id.pref_edit_text);
        text.setText(mStringArrayTitle[position]);
        text.setTypeface(tf, Typeface.BOLD);

        text = (TextView) view.findViewById(R.id.pref_edit_text2);
        text.setText(mStringArraySubTitle[position]);
        text.setTypeface(tf);

        mMainActivity.setTitle("Settings");

        return view;
    }

这是我在CheckBox单击 a 时处理的位置ListFragment

    public void onCheckBoxClick(View view) {
        boolean isChecked = ((CheckBox) view).isChecked();
        Editor editor = mMainActivity.getSharedPreferences(PREF_KEY_CHECK_BOX, Activity.MODE_PRIVATE).edit();

        switch (view.getId()) {
            case R.id.check_box :
                if (isChecked) {
                    editor.putBoolean(PREF_KEY_ROUNDING, true).commit();
                }
                else {
                    editor.putBoolean(PREF_KEY_ROUNDING, false).commit();
                }
                break;
            }
        }
    }

这是我的设置的样子:
在此处输入图像描述

我尝试了什么
1. 我尝试将适配器中的变量设置为项目位置并使用 getter 获取位置,但这仅返回显示的最后一个项目的位置。
2. 我尝试使用其中的一些方法ListFragment来获取位置,CheckBox但它们总是返回-1。
3. 我在 SO 上进行了很多谷歌搜索和搜索,但我无法找到解决方案来使其正常工作。

因此,如果有人知道一种方法可以让我获得该位置的位置CheckBox或任何其他方法,我可能能够分辨出哪个被点击了,我将永远感激不尽。

4

1 回答 1

11

您可以使用setTag向视图添加int指示其位置的 ,然后稍后使用getTag. 前任:

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    ... // your other code here

    CheckBox checkbox = (CheckBox) view.findViewById(R.id.pref_check_box);
    checkbox.setTag(new Integer(position));

}

然后,在你的onCheckBoxClick

public void onCheckBoxClick(View view) {
    Integer pos;
    pos = (Integer) view.getTag();

    ... // do what you want with `pos` here

}
于 2013-04-03T19:13:25.453 回答