有没有办法在偏好活动中添加自定义组件以更改设置的值?
问问题
190 次
1 回答
0
您可以添加任何扩展android.app.Preference的自定义组件
或者如果它应该是一个视图 - 创建一个布局,但您必须在 PreferenceScreen 的布局中包含一个带有 android.R.id.list 的 ListView
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/layout_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background_color" >
<YourCustomComponentView
android:id="@+id/view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"/>
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_below="@+id/view"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
在添加任何首选项之前只需 setContentView() 即可。
于 2013-02-08T16:37:52.293 回答