75 lines
3.0 KiB
XML
75 lines
3.0 KiB
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:id="@+id/main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@mipmap/iv_homefragment_bg"
|
|
tools:context="com.jelly.zyreotv.app.ui.activity.home.VTHomeFragment">
|
|
|
|
|
|
<FrameLayout
|
|
android:id="@+id/layout_search"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_40"
|
|
android:layout_marginStart="@dimen/dp_14"
|
|
android:layout_marginTop="@dimen/dp_55"
|
|
android:layout_marginEnd="@dimen/dp_14"
|
|
android:background="@drawable/shape_serarch_home"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_home_search"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="@dimen/dp_15"
|
|
android:layout_marginEnd="@dimen/dp_15"
|
|
android:textColorHint="#38ffffff"
|
|
android:gravity="center_vertical"
|
|
android:drawablePadding="@dimen/dp_7"
|
|
android:textColor="#38ffffff"
|
|
android:maxLines="1"
|
|
android:ellipsize="end"
|
|
android:textSize="@dimen/sp_12"
|
|
app:drawableStartCompat="@mipmap/iv_homefragment_search" />
|
|
</FrameLayout>
|
|
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/tablayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_marginTop="@dimen/dp_15"
|
|
android:layout_height="@dimen/dp_40"
|
|
android:layout_centerVertical="true"
|
|
android:background="@android:color/transparent"
|
|
app:layout_constraintTop_toBottomOf="@+id/layout_search"
|
|
app:tabBackground="@android:color/transparent"
|
|
app:tabIndicator="@drawable/tabindicator_item"
|
|
app:tabIndicatorColor="@color/color_f564b6"
|
|
app:tabIndicatorGravity="bottom"
|
|
app:tabIndicatorFullWidth="false"
|
|
app:tabInlineLabel="false"
|
|
app:tabIndicatorHeight="@dimen/dp_8"
|
|
app:tabMinWidth="@dimen/dp_40"
|
|
app:tabIndicatorAnimationMode="fade"
|
|
app:tabMode="scrollable"
|
|
app:tabPaddingBottom="@dimen/dp_3"
|
|
app:tabPaddingEnd="5dp"
|
|
app:tabPaddingStart="5dp"
|
|
app:tabRippleColor="@null"
|
|
app:tabSelectedTextColor="#F564B6"
|
|
app:tabTextAppearance="@style/MyBgTablayoutstyle"
|
|
app:tabTextColor="#D2D2D2" />
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
android:id="@+id/viewpager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginBottom="@dimen/dp_10"
|
|
app:layout_constraintTop_toBottomOf="@+id/tablayout"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
android:overScrollMode="never" />
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |