home_consult_view.xml 1.56 KB
Newer Older
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
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
       xmlns:app="http://schemas.android.com/apk/res-auto"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:orientation="vertical"
        android:clipChildren="false">

    <com.yidianling.home.ui.view.HomeCommonTitleBigFullView
        android:id="@+id/homeModuleConfideViewHomeCommonFullTitleView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:orientation="horizontal"
        android:clipChildren="false"
        >
        <com.google.android.material.tabs.TabLayout
            android:id="@+id/tab_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabGravity="fill"
            app:tabIndicatorHeight="0dp"
27 28
            android:layout_marginLeft="2dp"
            android:layout_marginRight="8dp"
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
            app:tabMode="scrollable"
            app:tabPaddingStart="4dp"
            app:tabPaddingEnd="4dp"
            app:tabSelectedTextColor="@color/platform_color_242424"
            app:tabTextAppearance="@style/TabLayoutTextSize"
            app:tabTextColor="#333"/>

    </LinearLayout>


    <FrameLayout
        android:id="@+id/ll_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

</merge>