我正在尝试从首选项项目中调用活动
理想情况下,我想简单地在 xml 中为该 Preference 项指定一个明确的意图
但是我的 google fu 抛弃了我,我只能找到隐含意图的例子,例如
<Preference android:title="@string/prefs_web_page" >
<intent android:action="android.intent.action.VIEW"
android:data="http://www.example.com" />
</Preference>
我已经以编程方式在其他地方调用了我的活动,例如
Intent intent = new Intent(this, FileChooserActivity.class);
但我想直接从 xml 调用它
这是可能的还是我叫错了树?