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

joshuabys님의 프로필 이미지

작성한 질문수

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

Splash 액티비티 질문이예요.

작성

·

251

0

다시 글 남겨요ㅜ
섹션 2. 트와이스 앱만들기
트와이스 앱 만들기 소개-강의소개 및 스플래시(Splash 화면) 4:35초에서 막혔습니다.
 
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.example.twice" >

<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=".SplashActivity2"
android:exported="false" >

</activity>

//여기서 부터

<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

//여기까지 어떠한 내용으로 고쳐야 하나요?


<activity
android:name=".MainActivity"
android:exported="true" >


</activity>
</application>

</manifest>
가상 핸드폰으로 볼려고 하니 안나오고
밑에 처럼 빨간색으로 에러 나오거든요. ㅠ 알려주세요.
Android resource linking failed C:\Users\joshu\AndroidStudioProjects\Twice2\app\build\intermediates\packaged_manifests\debug\AndroidManifest.xml:28: error: unexpected element <intent-filter> found in <manifest><application>.
 

답변 3

1

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

액티비티 이름이 SplashActivity2 로 되어 있는데 잘 만드신게 맞으시겠죠?

0

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

오 됐어요 ㅠ 감사합니다!!! 

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

굿입니당

0

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

intent filter 부분을 splash 안으로 넣어보시겠어요? 아래와 같이 하시면 됩니다.

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

<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=".SplashActivity2"
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>