TitleI would like to apply Material Design on devices running Android 5.0 and higher.2022-07-30 17:02:31WriterTAMAdd or modify the essential files below.Modify res/values/styles.xml123456<!-- A style shown on devices which version is lower or unconfirmed -- ><style name="AppTheme" parent="@android:style/Theme.NoTitleBar.Fullscreen" />[/su_box][su_box title="Add <strong>res/values-v11/styles.xml</strong>" style="soft" box_color="#999999"]<!-- A style shown on Android SDK v11 (3.0) and higher -- ><style name="AppTheme" parent="@android:style/Theme.Holo.NoActionBar.Fullscreen" />Add res/values-v14/styles.xml12<!-- A style shown on Android SDK v14 (4.0) and higher -- ><style name="AppTheme" parent="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen" />Add res/values-v21/styles.xml12<!-- A style shown on Android SDK v21 (5.0) and higher -- ><style name="AppTheme" parent="@android:style/Theme.Material.NoActionBar.Fullscreen" />Change theme settings in the AndroidManifest.xml file1234<!-- Theme settings on Main Activity -- ><activityandroid:name="com.com2us.misample.normal.freefull.google.global.android.common.MainActivity"<span style="color: red;"><strong>android:theme="@style/AppTheme"</strong></span> />Tag List PrevHow can I correct the NDK_ROOT setting error when building an Android sample app?TAM2022-07-30-I would like to apply Material Design on devices running Android 5.0 and higher.TAM2022-07-30NextHow to fix the crash on calling Camera and Photos in iOS.TAM2022-07-30