[Android] TabLayout
·
App/Android
1. 앱 모듈 dependencies에 라이브러리를 추가한다. implementation 'com.android.support:design:28.0.0' implementation 'com.android.support:support-v4:28.0.0' 2. app/res/values/styles.xml 에 들어가서 style parent를 Theme.AppCompat.Light.NoActionBar로수정한다. 3. app/res/layout에서 오른쪽 마우스 버튼 클릭 후 New > Layout Resource File을 생성한다. 4. 이와 같은 방식으로 tab_fragment_1부터 tab_fragment_5까지 만들어준다. 5. app/java/com.example.파일이름 에서 오른쪽 마우스 클릭..