Created
September 19, 2014 11:05
-
-
Save goodev/8bd30d90f23f55303d0f to your computer and use it in GitHub Desktop.
在 preference.xml 中定义 intent
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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