我有一个偏好 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" />