1

我只是根据这个问题的答案在偏好活动上设置了一个按钮。我的主要问题是这个按钮是不可点击的,而偏好活动的其他元素是可点击的。

我创建了一个简单的示例来演示我的困境,它应该显示与复制和粘贴相同的症状。

public class preferenceTest extends PreferenceActivity{

private Button button;
@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);
    getFragmentManager().beginTransaction().replace(android.R.id.content, new MyPreferenceFragment()).commit();
    button = (Button)findViewById(R.id.button);

    button.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub
            Toast.makeText(getApplicationContext(), "I got clicked", Toast.LENGTH_SHORT).show();
        }
    });

}
 public static class MyPreferenceFragment extends PreferenceFragment
    {

        @Override
        public void onCreate(final Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            addPreferencesFromResource(R.xml.preftest);
            // Do Stuff
        }
    }


}

资源\布局\activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:orientation="vertical">

<ListView android:id="@android:id/list"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent" 
          android:textColor="@android:color/black"
          android:layout_weight="10"/>

<Button android:text="This is a button on bottom of all preferences."
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/button" 
        android:textColor="@android:color/black"
        android:layout_weight="1"/>
</LinearLayout>

res\xml\preftest.xml

<PreferenceCategory
    android:title="New Title"
    android:summary="Title">

    <ListPreference 
        android:key="list1"
        android:title="List one"
        android:summary="List1"
        />

    <ListPreference 
        android:key="list2"
        android:title="List two"
        android:summary="List2"/>

</PreferenceCategory>

<CheckBoxPreference
    android:key="check1"
    android:title="check1"
    android:summary="CheckBox Test"/>

</PreferenceScreen>
4

1 回答 1

2

我不确定你为什么要在 PreferenceActivity 中添加一个按钮,但你可以做的是添加一个普通的Preference,然后通过活动代码使其可点击。

例如,在您的preferences.xml

<Preference
        android:key="@string/pref_key_dummy_pref_button"
        android:title="@string/pref_title_dummy_pref_button" />

然后,在您的 PreferenceActivity 上,创建一个 Preference 对象:

Preference mDummyButtonPref;

从 onCreate 初始化它:

addPreferencesFromResource(R.xml.preferences);
mDummyButtonPref= findPreference(getString(R.string.pref_key_dummy_pref_button));

然后,添加覆盖 onPreferenceTreeClicked 来处理点击:

@Override
@Deprecated
public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen,
        Preference preference) {
    if (preference == mDummyButtonPref) {
        Log.v(TAG, "Dummy got clicked");
    }
}
于 2013-06-03T15:45:24.580 回答