<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:background="@color/page_bg">
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@color/white"
|
app:layout_constraintTop_toTopOf="parent">
|
<TextView
|
android:layout_width="match_parent"
|
android:id="@+id/tv_platform"
|
style="@style/style_form_text_setting"
|
app:layout_constraintTop_toTopOf="parent"
|
android:layout_marginEnd="12dp"
|
android:layout_marginStart="110dp"
|
android:gravity="end"
|
android:layout_height="wrap_content"
|
app:layout_constraintEnd_toEndOf="parent"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintBaseline_toBaselineOf="@id/tv_platform"
|
android:text="平台客服"
|
style="@style/style_common_text"
|
android:layout_marginStart="14dp"
|
app:layout_constraintStart_toStartOf="parent"/>
|
<View style="@style/style_form_divider_line"
|
app:layout_constraintTop_toBottomOf="@id/tv_platform"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:id="@+id/tv_company"
|
style="@style/style_form_text_setting"
|
app:layout_constraintTop_toBottomOf="@id/tv_platform"
|
android:layout_marginStart="110dp"
|
android:layout_height="wrap_content"
|
android:layout_marginEnd="12dp"
|
android:drawablePadding="14dp"
|
android:gravity="end"
|
android:drawableEnd="@mipmap/icon_phone_green"
|
app:layout_constraintEnd_toEndOf="parent"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintBaseline_toBaselineOf="@id/tv_company"
|
android:text="本地客服"
|
style="@style/style_common_text"
|
android:layout_marginStart="14dp"
|
app:layout_constraintStart_toStartOf="parent"/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
<View style="@style/style_form_divider_line"
|
app:layout_constraintTop_toTopOf="parent"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|