I have a Preference tag inside PreferenceScreen called "faq" and I want to open another Activity when tapping on it. What is the right way to do that? There is a similar question on this link: Android: Start Activity from preferences.xml Is there any other way so I can handle some sort of action when tap on this item ?
<PreferenceScreen
xmlns:app="http://schemas.android.com/apk/res-auto">
<SwitchPreferenceCompat
app:key="notifications"`enter code here`
app:title="Enable message notifications"/>
<Preference
app:key="faq"
app:title="FAQ" />
</PreferenceScreen>