인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

인프런 커뮤니티 질문&답변

shafeel2님의 프로필 이미지
shafeel2

작성한 질문수

[왕초보편] 앱 8개를 만들면서 배우는 안드로이드 코틀린(Android Kotlin)

트와이스 앱 만들기 소개 - 강의소개 및 스플래시(Splash 화면)

SplashActivity.kt 에러가 나네요

작성

·

673

·

수정됨

0

@Suppress("DEPRECATION")
class SplashActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_splash)

        Handler().postDelayed({
            startActivity(Intent(this, MainActivity::class.java))
            finish()
        },  10000)
    }
}

늘 수고하심에 감사드리고
아래와 같은 에러가 나오네요 
그래서인지 splash.png 화면도 안뜨네요 
The application should not provide its own launch screen

답변 2

0

shafeel2님의 프로필 이미지
shafeel2
질문자

답변감사드립니다

git 에 파일올려 두었습니다

https://github.com/dongguntechnology/lec_twice/tree/main/app/src

개복치개발자님의 프로필 이미지
개복치개발자
지식공유자

<!--        <item name="windowNoTitle">false</item>-->

이 부분을 주석처리해주세요.

image

 

shafeel2님의 프로필 이미지
shafeel2
질문자

잘 해결되었습니다

님의 수고에 다시한번 감사드립니다

늘 건강하시고 부자되세요

그리고 주석처리하는 이유도 알 수 있을까요 ???

개복치개발자님의 프로필 이미지
개복치개발자
지식공유자

프로젝트 생성했을 때 원래 없는 코드입니다.

이 부분때문에 에러가 발생해서 삭제해줬습니다.

0

개복치개발자님의 프로필 이미지
개복치개발자
지식공유자

AndroidMenifest.xml 파일을 수정하셨나요?

어떻게 수정하셨는지 알려주세요.

shafeel2님의 프로필 이미지
shafeel2
질문자

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.Twice"
        tools:targetApi="31">
        <activity android:name=".SplashActivity"
            android:exported="true">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
        </activity>
        <activity
            android:name=".MainActivity"
            android:exported="true">

        </activity>
    </application>

</manifest>
개복치개발자님의 프로필 이미지
개복치개발자
지식공유자

제가 동일한 코드로 해보니 잘 되는데
전체 코드를 압축해서 구글 드라이브에 올리시고 링크를 공유해주시면 살펴보겠습니다.

shafeel2님의 프로필 이미지
shafeel2

작성한 질문수

질문하기