home_confide_view.xml 1.09 KB
Newer Older
徐健 committed
1 2 3 4 5 6 7
<?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">

徐健 committed
8
    <com.yidianling.home.ui.view.HomeCommonTitleView
徐健 committed
9 10 11 12 13
        android:id="@+id/homeModuleConfideViewHomeCommonTitleView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />


YKai committed
14
    <com.google.android.material.tabs.TabLayout
徐健 committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
        android:id="@+id/tab_layout"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        app:tabGravity="fill"
        app:tabIndicatorHeight="0dp"
        app:tabMode="scrollable"
        app:tabSelectedTextColor="@color/platform_color_242424"
        app:tabTextAppearance="@style/TabLayoutTextSize"
        app:tabTextColor="#333" />

    <LinearLayout
        android:id="@+id/ll_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" />

</merge>