아래 필수 파일을 추가하거나 수정하세요. - res/values/styles.xml 수정
| <!-- 낮은 버전 또는 버전이 확인되지 않는 단말에서 보이는 style -- > <style name="AppTheme" parent="@android:style/Theme.NoTitleBar.Fullscreen" /> [/su_box] [su_box title="res/values-v11/styles.xml 추가" style="soft" box_color="#999999"] <!-- Android SDK v11 (3.0) 이상 버전에서 보이는 style -- > <style name="AppTheme" parent="@android:style/Theme.Holo.NoActionBar.Fullscreen" /> |
- res/values-v14/styles.xml 추가
| <!-- Android SDK v14 (4.0) 이상 버전에서 보이는 style -- > <style name="AppTheme" parent="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen" /> |
- res/values-v21/styles.xml 추가
| <!-- Android SDK v21 (5.0) 이상 버전에서 보이는 style -- > <style name="AppTheme" parent="@android:style/Theme.Material.NoActionBar.Fullscreen" /> |
- AndroidManifest.xml 파일 내 테마 설정 변경
| <!-- Main Activity에서 theme 설정 -- > <activity android:name="com.com2us.misample.normal.freefull.google.global.android.common.MainActivity" <span style="color: red;"><strong>android:theme="@style/AppTheme"</strong></span> /> |
|