0

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

unicorn2
  • 844
  • 13
  • 30
Bogdan Costin
  • 41
  • 1
  • 4

1 Answers1

1

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>
Rahul Kishan
  • 314
  • 4
  • 18