SMALL
타이틀 바 없애기
경로 : res/values/themes.xml
, res/values-night/themes.xml
<style name="Theme.앱이름" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
...생략
<!-- Customize your theme here. -->
<!--타이틀 바 없애기-->
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
상태 바 없애기
경로 : MainActivity.java
import android.os.Build;
import android.view.WindowInsets;
import android.view.WindowInsetsController;
import android.view.WindowManager;
...
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/* 전체화면 코드 시작 */
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
final WindowInsetsController insetsController = getWindow().getInsetsController();
if (insetsController != null) {
insetsController.hide(WindowInsets.Type.statusBars());
}
} else {
getWindow().setFlags(
WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN
);
}
/* 전체화면 코드 끝 */
}
...
}
노치 / 펀치홀 대응 (안드로이드 9 이상)
경로 :res/values-v28/themes.xml
,res/values-night-v28/themes.xml
<style name="Theme.앱 이름" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
... 중략 ...
<!-- Customize your theme here. -->
<!--타이틀 바 없애기-->
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<!-- 노치 / 펀치 홀 대응 -->
<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
</style>
BIG
'Mobile App > Android' 카테고리의 다른 글
안드로이드 웹뷰 뒤로가기 버튼 이벤트 만들기 (1) | 2021.05.12 |
---|---|
안드로이드 웹뷰 사용 및 설정, SSL 무시 (0) | 2021.05.12 |
안드로이드 하단 메뉴바 활용하기 (0) | 2021.05.02 |
안드로이드 프래그먼트 활용하기 (0) | 2021.05.02 |
안드로이드 스플래시 이미지 구현하기 (0) | 2021.04.29 |