代码之家  ›  专栏  ›  技术社区  ›  Siddharth Lele

从默认首选项新建活动

  •  0
  • Siddharth Lele  · 技术社区  · 14 年前

    “货币”部分工作正常。只是显示,不是程序。但我真正想做的是,当点击“联系人”或“项目类型”时,他们应该打开另一个自定义活动,让用户管理他的联系人。这些是顺便说一句,不是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>
    

    1 回复  |  直到 14 年前
        1
  •  1
  •   CommonsWare    14 年前

    也许,我根本不应该使用默认的android首选项?

    IMHO,你“不应该使用默认的android首选项”来处理“联系人”和“项目类型”,如果你要为它们呈现一个非偏好UI的话。