我正在尝试更改Xamarin项目的Android主题。为此,我更改了AndroidManifest.xml,添加了句柄<application android:theme="@android:style/Theme.DeviceDefault.Light" android:label="MyApp.Android"></application>
并擦除了MainActivity.cs中的Theme = "@style/MainTheme"
,但它只是崩溃而无法打开应用程序。
我该怎么做?
答案 0 :(得分:1)
将Java继承从 AppCompatActivity 更改为 Activity ,然后您将解决此问题。
请查看以下主题以获取详细信息:
You need to use a Theme.AppCompat theme (or descendant) with this activity