Reputation: 41
When I want to add this code on my app it gives me this : "Unfortunately, MyApp has stopped".
Is because I added this line : android:theme="@android:style/Theme.Dialog"
I tried to add this line too android:theme="@android:style/Theme.Holo"
but is still not working
<activity android:name=".About" android:label="@string/about_title" android:theme="@android:style/Theme.Dialog"> </activity>
Please help me. Thanks
Upvotes: 0
Views: 519
Reputation: 314
TRY: adding android:theme="@style/Theme.AppCompat.Light" to your application tag in the AndroidManifest.xml file.
<activity android:name=".About" android:label="@string/about_title" android:theme="@style/Theme.AppCompat.Light"> </activity>
Upvotes: 1