android中的自定义Intent-Filters

时间:2012-07-12 10:42:56

标签: android android-intent intentfilter

我目前要达到的目的是:
在一个活动中添加记录并在其他活动上显示。 点击show活动上的编辑按钮,它会将用户带回第一页以编辑数据 问题是我不能使用Intent.putextra(),因为添加页面与其他页面链接,所以它给我带来了错误。
考虑使用共享首选项,但我不认为它会对我有多大帮助,因为如果在共享首选项中设置了一个值,它将在活动加载时可用,所以我无法知道从哪里进入活动。所以想到使用intent-filters。 谁能帮我这个 ? 我不想创建另一个类用于编辑目的。

1 个答案:

答案 0 :(得分:0)

为什么不检查......

<pre>
<code>
    if (getIntent() != null && getIntent().getSerializableExtra("Id") != null)
    {
       //get the data here becuz it's not null here....
    }
</code>
</pre>

还要注意getIntExtra()也存在......