일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- OkHttp Interceptor
- Android Jetpack
- 습관만들기
- Java
- 안드로이드 갤러리 접근
- Android 12
- Android 12 대응
- 알고리즘 자바
- 안드로이드 fcm
- 안드로이드 카카오 로그인
- Kotlin FCM
- Android WebView
- 안드로이드
- Android ProgressBar
- 영어공부
- scope function
- 66챌린지
- Android DataBinding
- DataBinding
- Android Interceptor
- Android Navigation
- Android ViewPager2
- android recyclerview
- 영어독립365
- Kotlin
- 프로그래머스 알고리즘
- Android
- 카카오 알고리즘
- MVP Architecture
- WebView
Archives
- Today
- Total
Developer Geek
[Android] TabLayout Under Line 본문
반응형
[Android] TabLayout Under Line
개요
TabLayout 하단 전체에 밑줄을 그리는 방법을 간단히 공유합니다.
배달의 민족 앱에서 하단 "찜"탭 화면에 진입하면 상단 탭에 회색 밑줄이 있는데 이를 비슷하게 구현했습니다.
예시: 배달의 민족 > 찜
결과 화면
Code
rectangle_underline_gray.xml: TabLayout's Background
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="@color/gray" />
</shape>
</item>
<item>
<inset android:insetBottom="1dp">
<shape android:shape="rectangle">
<solid android:color="@color/white" />
</shape>
</inset>
</item>
</layer-list>
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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">
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabLayout"
android:layout_width="0dp"
android:layout_height="50dp"
android:background="@drawable/rectangle_underline_gray"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:tabGravity="fill"
app:tabIndicatorHeight="3dp"
app:tabIndicatorColor="@color/orange"
app:tabIndicatorFullWidth="true"
app:tabTextColor="@color/orange"/>
</androidx.constraintlayout.widget.ConstraintLayout>
반응형
'안드로이드 > View' 카테고리의 다른 글
[Android] WebView ProgressBar Sample (0) | 2022.12.22 |
---|---|
[Android] WebView 이미지 업로드 (0) | 2022.12.02 |
[Android] WebView Bridge And JS Call (0) | 2022.11.25 |
[Android] WebView의 JS 함수 호출 (0) | 2022.11.22 |
[Android] WebView Bridge Basic Sample (1) | 2022.09.30 |
Comments