home_common_title_view.xml 1.98 KB
Newer Older
严久程 committed
1
<?xml version="1.0" encoding="utf-8"?>
YKai committed
2
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
严久程 committed
3 4 5 6
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
7
    android:paddingTop="@dimen/platform_dp_30"
ydl committed
8
    android:paddingBottom="@dimen/platform_dp_6">
严久程 committed
9 10 11 12 13 14

    <TextView
        android:id="@+id/homeModuleCommonTitleViewTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingRight="@dimen/platform_dp_1"
ydl committed
15 16
        tools:text="通用标题"
        android:textSize="20dp"
严久程 committed
17
        android:textStyle="bold"
ydl committed
18
        android:textColor="@color/platform_color_242424"
严久程 committed
19
        android:layout_marginLeft="@dimen/platform_dp_15"
ydl committed
20 21
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintLeft_toLeftOf="parent" />
严久程 committed
22 23

    <LinearLayout
ydl committed
24 25 26
        android:id="@+id/homeModuleCommonTitleViewMorell"
        android:layout_width="74dp"
        android:layout_height="@dimen/platform_dp_28"
严久程 committed
27 28 29 30 31 32
        android:orientation="horizontal"
        android:gravity="center"
        android:layout_marginBottom="@dimen/platform_dp_3"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        android:layout_marginRight="@dimen/platform_dp_15"
ydl committed
33 34
        android:background="@drawable/home_show_more_line"
        android:visibility="gone">
严久程 committed
35 36

        <TextView
ydl committed
37
            android:id="@+id/homeModuleCommonTitleViewMoreText"
严久程 committed
38 39 40
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
ydl committed
41
            android:text="更多选择"
严久程 committed
42
            android:layout_marginLeft="@dimen/platform_dp_2"
ydl committed
43 44
            android:textColor="@color/platform_color_666666"
            android:textSize="12dp"/>
严久程 committed
45 46 47 48 49

    </LinearLayout>



YKai committed
50
</androidx.constraintlayout.widget.ConstraintLayout>