12

我有一个字符串列表(存储在数据库中,而不是作为资源),
我想允许用户编辑这个列表。这对普通的很容易做到 Activity
但在这个应用程序中,该列表应该是user preferences.
基本上,它是用户想要使用的句子列表。

由于我想提供一致的 UI,因此我想将其添加到首选项屏幕:

<PreferenceScreen xmlns:android="...">
    <!-- Some other categories and preferences here -->
    <PreferenceScreen android:key="PREF_PDT"
                      android:title="Predefined Texts"
                      android:summary="View and edit the list of predefined texts">
    </PreferenceScreen>
    <!-- Some other categories and preferences here -->
<PreferenceScreen>

现在假设我有一个完整的工作Activity允许我编辑数据库中的文本
,当用户点击使用的“PREF_PDT”项目时,我该怎么做Activity

我认为我必须对Activity
或创建某种自定义首选项视图进行一些修改?

更新:所以为了清楚起见,我不需要“列表”屏幕来挂钩设置,
我只需要给用户一种印象,他们仍然在应用程序的首选项部分(不破坏导航堆栈课程)。否则他们必须去一个地方编辑一些设置,然后去另一个地方编辑文本。他们希望在“设置”下找到所有内容

更新:我已将“自定义首选项屏幕以编辑项目列表”中的问题重命名,因为现在很清楚我要做的是从 PreferenceScreen 启动活动。sh404 的回答有帮助,但我找不到正确的语法来引用我想要的活动。也许它是 monodroid 特定的。(ActivityNotFoundException)

4

3 回答 3

22

像这样写:

<Preference
    android:key="mykey"
    android:title="TheTitle"
    android:summary="summary here" >
    <intent android:action="net.hasnath.android.MyActivity"/>
</Preference>

如果您需要通过 Intent Extras:

<Preference
    android:key="mykey"
    android:title="TheTitle"
    android:summary="summary here" >
    <intent android:action="net.hasnath.android.MyActivity">
        <extra android:name="extra_name" android:value="my_value" />
         <extra android:name="extra_2_name" android:value="my_value_2"/>
    </intent>
</Preference>

接下来,您必须在 AndroidManifest.xml 中声明 Activity,
或者您可以在首选项屏幕中声明意图,如下所示:

<intent android:targetPackage="net.hasnath.android"
        android:targetClass="net.hasnath.android.MyActivity"/>

这样您就不必对 AndroidManifest 进行任何更改。

于 2013-03-08T06:35:42.080 回答
0

在清单文件中以这种方式设置活动

<activity android:name=".MainActivity">
     <intent-filter>
            <action android:name=".MainActivity" />
       <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>

并在首选项文件中

<Preference
     android:key="preferred_key"
     android:title="@string/preferred_title"
     android:summary="@string/preferred_key_summary">
         <intent android:action=".MainActivity"/
</Preference>
于 2021-08-01T08:51:33.373 回答
-1

我有同样的问题,但我在 stackoverflow 上搜索的解决方案都没有解决我的 activitynotfound 异常。

这是我从这里找到的工作解决方案:

    <PreferenceScreen  
                android:title="@string/title_intent_preference"  
                android:summary="@string/summary_intent_preference">  

            <intent android:action="your.action.string"/>  

 </PreferenceScreen>  

在 manifest.xml 中的活动中设置意图过滤器

    <activity ...>  
            <intent-filter>  
                <action android:name="your.action.string"/>  
                <category android:name="android.intent.category.DEFAULT" />  
            </intent-filter>  
</activity>
于 2013-06-05T15:04:06.323 回答