티스토리 뷰
위와 같이 TabLayout 아래에 ViewPager 를 두고 싶었는데, ViewPager 가 계속 TabLayout 을 침범했다
아래와 같이 나오는 것이었다.
<android.support.v4.view.ViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintStart_toStartOf="@+id/tabs"
app:layout_constraintTop_toBottomOf="@+id/tabs">
</android.support.v4.view.ViewPager>
여기서
android:layout_height="match_parent"
를
android:layout_height="wrap_content"
로 바꾸어서 해결했다.
XML 전문
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintBottom_toTopOf="@+id/container"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
</android.support.design.widget.TabLayout>
<android.support.v4.view.ViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintStart_toStartOf="@+id/tabs"
app:layout_constraintTop_toBottomOf="@+id/tabs">
</android.support.v4.view.ViewPager>
</android.support.constraint.ConstraintLayout>
'안드로이드' 카테고리의 다른 글
Spinner item이 클릭이 안 될 때 (0) | 2020.01.12 |
---|---|
RecyclerView 에서 Fragment 전환하기 (2) | 2019.02.12 |
RecyclerView item 에 onClickListener 적용하기 (0) | 2019.02.12 |
Fragment 와 ViewPager 함께 쓰기 (7) | 2019.02.11 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 14714 어플
- 14714 플래너
- 14714 공부법 어플리케이션
- get_filename_component
- aws 프리티어 요금청구
- 복습 어플
- CMake 반복문
- 14714 앱
- buffer-over-flow
- 14714 공부법
- CMake probouf
- CMake for문
- CMAke 파일이름 추출
- 복습 계획어플
- CMake get file name
- 14714 어플리케이션
- CMake for
- CMake 기초
- 함수포인터 오버라이트
- 토리파 공부법
- 14714 복습법
- react-native
- aws 청구문의
- function pointer overflow
- CMake run protoc
- CMake run proto compiler
- review reminder
- CMake get_filename_Component
- 14714 review
- CMake 강좌
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함