반응형
Android Full Screen
일단 res > values > styles.xml 을 열어줍니다.
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<!-- ### 여기 아래 부분 추가 ### -->
<style name="FullScreenTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowFullscreen">true</item>
</style>
</resources>
그리고 Manifest.xml 파일을 열어서
전체화면을 하고 싶은 Activity 에 아래와 같이 theme 를 추가합니다.
<activity
android:name=".MainActivity"
android:theme="@style/FullScreenTheme" />
그럼 전체화면이 됩니다.
1초에 로또 15장 이상 당첨확인!
글 작성자의 안드로이드 앱 -> Google play
2019/02/27 - [Android] - [android] 화면간 값 전달 Activity intent parameter
2019/05/09 - [Android] - [Android] MsSQL Server 연동하기
2019/08/11 - [Android] - [Android] Light Sensor 라이트 센서 (조도 측정)
728x90
반응형
'Android' 카테고리의 다른 글
[Android] Drawable, ImageView 에서 Bitmap 가져오기 (2) | 2019.09.06 |
---|---|
[Android] Gallery 에서 Image 가져오기. (0) | 2019.09.03 |
[Android] Light Sensor 라이트 센서 (조도 측정) (0) | 2019.08.11 |
android.app.Fragment is deprecated (0) | 2019.06.25 |
[Android] MsSQL Server 연동하기 (8) | 2019.05.09 |
댓글