12

我有一个偏好 android:layout gft。我已经在 xml 文件中首选项的 android:layout 属性中设置了布局。

现在我需要对布局中的一个按钮进行初始化(它是一个 +1 按钮)。我需要在 onCreate 方法中获取该按钮(它是一个 +1 按钮),但是当我使用 时findViewById(button_id),它返回 null。

有什么方法可以了解这种偏好吗?

更新: 似乎在我添加首选项 xml 后没有创建首选项,所以我得到空值。我可以在哪里调用 findViewById 以便已经创建了按钮?

谢谢。

偏好xml:

<Preference android:title="Rate this app"
    android:key="rate"
    android:widgetLayout="@layout/plusone_pref"/>

</PreferenceScreen>

偏好布局xml:

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.gms.plus.PlusOneButton xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:plus="http://schemas.android.com/apk/lib/com.google.android.gms.plus"
android:id="@+id/plus_one_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:focusable="false"
plus:size="standard" />
4

1 回答 1

14

您需要创建一个扩展类Preference,然后覆盖onBindView,您将可以访问该视图。

public class MyPreference extends Preference {

    ...

    @Override
    protected void onBindView(View view) {
        super.onBindView(view);
        View myView = (View) view.findViewById(R.id.my_id);
        // ... do stuff
    }

}

您可能需要覆盖更多方法,阅读 PreferenceActivity 中的自定义首选项 - http://developer.android.com/guide/topics/ui/settings.html

于 2014-09-27T12:45:46.790 回答