반응형
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
로또버스 LOTTO BUS - Google Play 앱
1. 멀티스캔 당첨확인 GPU를 이용한 인공지능 당첨확인 기존 앱들과 비교할 수 없는 속도 ! 멀티스캔으로 가장 빠르게. 2. 당첨이력을 분석한 추천 번호 생성이 무료 Oracle Cloud에서 매주 Python 통계/분석. 마음에 드는 분석기능을 선택하여 번호생성. 분석 가중치에 따른 번호 추출. 3. 심플한 내 번호 관리 꿈에서 본 그 번호! 바로 저장하세요. 스캔했던 로또 번호가 이력에 자동 저장
play.google.com
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 |
댓글