My Google-Fu is failing this Android newbie today.
Does anybody know of a good example showing how to launch an intent from a PreferenceScreen?
Something like:
<PreferenceScreen
android:key="preference_some_new_layout"
android:title="@string/pref_some_title">
<intent android:action="????" />
</PreferenceScreen>
I want to show a custom LinearLayout that allows me to set some semi-complex preferences.
What is the best way to go about this?
Thanks, wTs