Bogdan Costin
Bogdan Costin

Reputation: 41

Android Theme.Dialog gives me an error

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

Answers (1)

Rahul Kishan
Rahul Kishan

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

Related Questions