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 ?