79088327

Date: 2024-10-15 03:38:12
Score: 0.5
Natty:
Report link

Use an AppCompat theme instead.
Set up your theme to extend an AppCompat theme in xml:

<style name="Theme.App" parent="Theme.AppCompat.NoActionBar">
  
        <!-- no window title -->
        <item name="windowNoTitle">true</item>
</style>

Then use it in AndroidManifest, android:theme=“@style/Theme.App”.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kolyneh