“货币”部分工作正常。只是显示,不是程序。但我真正想做的是,当点击“联系人”或“项目类型”时,他们应该打开另一个自定义活动,让用户管理他的联系人。这些是顺便说一句,不是android联系人。它是一个连接到数据库表的活动,允许用户管理他的联系人和他的项目类型。
有什么建议吗?也许,我根本不应该使用默认的android首选项?
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android" >
<PreferenceCategory
android:title="Manage your resources" >
<ListPreference
android:key="contacts"
android:title="Manage your Contacts"
android:summary="Click here to ADD, EDIT and DELETE Contacts" >
</ListPreference>
<ListPreference
android:key="projects"
android:title="Types of Projects"
android:summary="Click here to maintain a list of Types of Projects that match your profession" >
</ListPreference>
<ListPreference
android:key="currency"
android:title="Select currency"
android:summary="Set a default currency that you wish to use" android:entryValues="@array/entryvalues_list_preference" android:entries="@array/entries_list_preference">
</ListPreference>
</PreferenceCategory>