ht_dialog_customer.xml 4.8 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:layout_height="match_parent">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="@style/ht_title_style">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:text="联系客服"
            style="@style/ht_title_text_style" />

        <ImageView
            android:id="@+id/ht_close_img"
            style="@style/ht_close_style"
            android:layout_width="18dp"
            android:layout_height="18dp" />
    </RelativeLayout>


    <RelativeLayout
        android:layout_width="match_parent"
        style="@style/ht_content_style"
        android:layout_height="match_parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:padding="20dp"
            android:id="@+id/ht_customer_ly"
            android:showDividers="middle">

            <LinearLayout
                android:id="@+id/ht_tv_call_phone"
                android:layout_width="match_parent"
                android:layout_height="45dp"
                android:orientation="horizontal"
                android:background="@drawable/ht_edittext_bg"
                android:gravity="center"
                android:layout_margin="10dp">

                <ImageView
                    android:layout_width="20dp"
                    android:layout_height="20dp"
                    android:background="@drawable/ht_icon_qq" />

                <TextView
                    android:layout_width="wrap_content"
                    android:text="客服热线"
                    android:textStyle="bold"
                    style="@style/ht_dialog_text_style_1"
                    android:layout_height="wrap_content" />
            </LinearLayout>

            <LinearLayout
                android:id="@+id/ht_tv_add_qq"
                android:layout_width="match_parent"
                android:layout_height="45dp"
                android:orientation="horizontal"
                android:background="@drawable/ht_edittext_bg"
                android:gravity="center"
                android:layout_margin="10dp">

                <ImageView
                    android:layout_width="20dp"
                    android:layout_height="20dp"
                    android:background="@drawable/ht_icon_qq" />

                <TextView
                    android:layout_width="wrap_content"
                    android:text="QQ客服"
                    android:textStyle="bold"
                    style="@style/ht_dialog_text_style_1"
                    android:layout_height="wrap_content" />
            </LinearLayout>

            <LinearLayout
                android:id="@+id/ht_tv_add_qq_group"
                android:layout_width="match_parent"
                android:layout_height="45dp"
                android:orientation="horizontal"
                android:background="@drawable/ht_edittext_bg"
                android:gravity="center"
                android:layout_margin="10dp">

                <ImageView
                    android:layout_width="20dp"
                    android:layout_height="20dp"
                    android:background="@drawable/ht_icon_qq" />

                <TextView
                    android:layout_width="wrap_content"
                    android:text="玩家QQ群"
                    android:textStyle="bold"
                    style="@style/ht_dialog_text_style_1"
                    android:layout_height="wrap_content" />
            </LinearLayout>
        </LinearLayout>

        <LinearLayout
            android:id="@+id/ht_customer_no_ly"
            android:layout_width="wrap_content"
            android:orientation="vertical"
            android:visibility="gone"
            android:layout_centerInParent="true"
            android:layout_height="wrap_content">

            <ImageView
                android:id="@+id/ht_gift_center_nothing"
                android:layout_width="80dp"
                android:layout_height="80dp"
                android:background="@drawable/ht_icon_exit"
                android:layout_gravity="center" />

            <TextView
                android:layout_width="wrap_content"
                android:text="客服正在赶来中~~"
                android:layout_gravity="center"
                android:textSize="16sp"
                android:textColor="@color/ht_main_color_text"
                android:layout_margin="5dp"
                android:layout_height="wrap_content" />
        </LinearLayout>
    </RelativeLayout>
</LinearLayout>