|
|
@@ -0,0 +1,27 @@
|
|
|
+<?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="wrap_content">
|
|
|
+
|
|
|
+ <android.support.design.widget.TabLayout
|
|
|
+ android:id="@+id/life_plus_tab_layout"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="55dp"
|
|
|
+ tools:background="@color/C333333"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:background="@android:color/transparent"
|
|
|
+ android:textAlignment="center"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ app:tabBackground="@drawable/tab_indicator"
|
|
|
+ app:tabIndicatorColor="@color/C000000"
|
|
|
+ app:tabMode="fixed"
|
|
|
+ app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ />
|
|
|
+</android.support.constraint.ConstraintLayout>
|