Skip to content

Instantly share code, notes, and snippets.

@goodev
Created September 19, 2014 11:05
Show Gist options
  • Save goodev/8bd30d90f23f55303d0f to your computer and use it in GitHub Desktop.
Save goodev/8bd30d90f23f55303d0f to your computer and use it in GitHub Desktop.
在 preference.xml 中定义 intent
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<Preference android:title="@string/pref_title_data_manage" >
<!-- 当用户点击该设置条目的时候,就会调用这个 intent 来启动 SpaceActivity-->
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="org.goodev.test"
android:targetClass="org.goodev.test.SpaceActivity" />
</Preference>
</PreferenceScreen>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment