Recent Posts
Recent Comments
Archives
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- CORS
- 초기셋팅
- git
- 구글 로그인
- 티스토리챌린지
- 모던자바스크립트
- 내일배움캠프
- 코드카타
- error
- js
- 코딩테스트
- 프로그래머스
- React
- deep dive
- nextjs
- Next
- vscode
- 코테
- 셋팅
- domain
- 자주 까먹는
- 리터럴
- 스파르타코딩클럽
- array정적메서드
- 모던 자바스크립트
- 오블완
- 프로젝트 셋팅
- 소셜 로그인
- vercel
- useRouter
- Today
- Total
파피루스
[android] splash 적용하기 본문
1. install 하기
yarn add react-native-splash-screen
2. splash 화면 정의하기
- 파일 위치 : /android/app/src/main/res/layout/launch_screen.xml
- 폴더나 파일이 없으면 만들어서 동일하게 구성할 것 (우측 사진 참고)
- 배경색 등 화면 구성이 정의되어 있다.
- ImageView 태그의 android:src="스플래시 이미지 링크" -> 해당 위치에 이미지 추가
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="false"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="#fff"
android:gravity="center_vertical"
android:orientation="vertical">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/splash" />
</RelativeLayout>
3. splash 보여주기
- 파일 위치 : /android/app/src/main/java/[...]/MainActivity.java
import org.devio.rn.splashscreen.SplashScreen;
class MainActivity : ReactActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
SplashScreen.show(this);
super.onCreate(null)
}
4. splash 숨기기
- 프로젝트의 App.tsx 파일 상단에 추가
useEffect(() => {
setTimeout(() => {
SplashScreen.hide();
}, 1000);
}, []);
5. 끝!
- 안드로이드 에뮬레이터 app 재설치 후 시도해보면, splash 화면 확인할 수 있다.
참고링크)
'React Native' 카테고리의 다른 글
[Error] Could not move temporary workspace (0) | 2024.10.18 |
---|---|
Component 의 종류 (1) | 2024.10.16 |