23.03.05 16:33 작성
·
347
·
수정됨
0
인트로 화면 완료 (Navigation)
2분에서 private var _binding: FragmentIntro1Binding?=null 에서요.
FragmentIntro1Binding는 무슨 타입인가요?
코인선택 화면 꾸미기 (XML)
2분 38초에서요.
처음에는 val intent= Intent(this,SelectActivity::class.java)이렇게 쓰셨다가 빨간줄 나오니까 val intent= Intent(requireContext(),SelectActivity::class.java)로 쓰셨는데요.
근데 여기 https://www.youtube.com/watch?v=oXIeBhV06-Y 17분정도에는 Intent(this,)로도 가능한데 왜 안되나요?
3.스플래쉬화면만들기에서
8분정도에요. 인터넷에 찾아보니 xml 에서도 상속 받는다는건 알겠는데요. 혹시 어디서 받는건가요? 해당 xml 파일은 Theme.SplashScreen이 없던데요.
<style name="Theme.MyApplication3.Splash" parent="Theme.SplashScreen">
4.네비게이션 인트로 화면세팅 10 분 44초에서
tools:layout_editor_absoluteX="1dp"
tools:layout_editor_absoluteY="1dp"
지우고
가로 세로 mach_parent로 하면 왜 <androidx.fragment.app.FragmentContainerView 이부분이 빨간줄이 사라지나요?
답변 1
0
2023. 03. 07. 02:50
constraint layout의 특징입니다. 위치를 상대적으로 잡아줘야 하는데, 전체를 match_parent로 꽉 채우면 에러가 나지 않는 것입니다. https://eso0609.tistory.com/33 참고해보셔도 좋을 것 같습니다.
2023. 03. 10. 03:25
3번은 제가 질문을 잘못드린거 같습니다.
themes에서
<style name="Theme.MyApplication3.Splash" parent="Theme.SplashScreen">
parent가 나와서 상속인줄 알았는데 parent는 무엇을 의미하는건가요?
2023. 03. 13. 08:38
https://developer.android.com/guide/topics/ui/look-and-feel/themes?hl=ko
기존 스타일을 상속받아 이용하는 것이 맞습니다. 위의 링크 참고해보시겠어요?
2023. 03. 07. 02:48
fragment 와 activity에서 context를 받아오는 방법의 차이입니다. https://4z7l.github.io/2020/11/22/android-getcontext-requirecontext.html 를 보셔도 좋을 것 같습니다.