Start Activity from preference screen (intent defined in xml file)
问题 In my preference file I go this <PreferenceCategory android:title="Title" > <Preference android:title="title" > <intent android:action="com.my.package.MainActivity" /> </Preference> </PreferenceCategory> The activity is created in the manifest file , but I still get android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.my.package.MainActivity } How can I start activity from preferences screen ? 回答1: I had the same issue but none of the solutions i searched on