inflearn logo
강의

Khóa học

Chia sẻ kiến thức

[Dành cho người mới bắt đầu] Học Android Kotlin thông qua việc tạo ra 8 ứng dụng

Làm ứng dụng TWICE - Giới thiệu khóa học và Splash (Màn hình Splash)

SplashActivity 관련 질문입니다.

1337

BIKMIM

5 câu hỏi đã được viết

0

길게 썼었는데 인프런 게시판이 이상한지 다 날라갔네요 ㅠㅠ

1. 현재 트와이스 앱만들기 1강을 듣고 있습니다.

2. 궁금한점은 SplashActivity 활성화가 안되어서 이구요.

3. 강의와 달리 제 Manifest.xml 파일은 기본완성되어 있는 내용이 조금 달랐습니다.

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

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Twice">
<activity
android:name=".SplashActivity"
android:exported="true" />
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

</manifest>

저는 처음에 이렇게 되어 있었구요.

android:exported="true" /> 이 부분뒤에

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

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Twice">
<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
android:name=".MainActivity"
android:exported="true">

</activity>
</application>

</manifest>

이렇게 잘라서 넣었는데요

ERROR:D:\Android-Studio-Works\Twice\app\build\intermediates\packaged_manifests\debug\AndroidManifest.xml:26: AAPT: error: unexpected element <intent-filter> found in <manifest><application>.

이런 에러 메세지가 떴습니다.

강의에서 나오는 것처럼 토씨하나 안들리게 눈으로 보면서

exported 부분 제거하고

<activity ~~~ </activity> 이런거 다시 다 손으로 치고 하면서

한글자 한글자 수정하면 동작은 하던데요.

뭔가 버전이 달라서 그런가.. 매번 이렇게 수정해줘야 하나요?

현재 윈도우 10, 안드로이드 스튜디오 최신버전 사용하고 있습니다.

SplashActivity android firebase kotlin

Câu trả lời 2

1

BIKMIM

답변 감사합니다. ^^

퇴근하고 바로 확인 해 보겠습니다.

1

bokchi

아래의 부분이 splashActivity 안으로 들어가야 합니다.

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

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

이 부분을

<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
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>

0

dudah754

동일하게 했는데도 앱이 실행되지 않고 꺼집니다..

<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>

0

bokchi

1. SlashActivity를 만드셨는지 확인해주세요.

2. 만약 만들었는데도 에러가 난다면 전체 manifest파일을 공유해주세요.

1

dudah754

잘 작동 됩니다! 감사합니다

주사위앱 소개 및 레이아웃 설정 문제

0

60

2

안드로이드 에뮬레이터가 실행이 안 되요...ㅠ

0

105

2

30 강 소스 좀 올려 주십시요

0

81

2

onBackPressed 함수가 동영상 하고 다르게 동작합니다.

0

90

2

ListView 초기 실행 안됩니다.

0

96

2

코딩을 완료하고난후 앱 실행시 자동 종료

0

72

2

datavinding에서 오류가 납니다.

0

52

1

안드로이드 스튜디오 버전 차이로 초기 empyt activity 선택하면 안됩니다.

0

110

2

context의 구별에 대하여

0

69

2

"프롤로그에서 ..." 오류 관련해 직전 질문에 대한 추가 질문입니다.

0

68

2

"프롤로그에서 콘텐츠가 허용되지 않습니다." 오류

0

157

3

해결완료

1

186

2

databinding 설정후 run하면 에러(해결)

0

222

2

databinding 설정 이후 실행시 에러

0

268

4

안드로이드 입문하는 사람입니다.

0

71

1

Firebase uid

0

76

3

activity_main 화면 다름

0

114

2

강의화면과 다른데 맞게진행되는것인가요...????

0

106

2

파이어베이스 질문

0

75

2

ActivityMainBinding에 오류가 납니다

0

135

2

선생님 onBackPressed 작동이 안되는거 같습니다

0

119

2

>app>res>layout 이 존재하지 않습니다.

0

119

2

안드로이드 스튜디오 미어캣 버전 사용 한글 깨짐

0

747

2

안드로이드 스튜디오 오류 발생 시 대처 방법은 요?

0

289

2