<?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">
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginHorizontal="20dp"
|
android:text="福伴出行为客户提供安全、便捷、优质的个性化商旅出行用车体验,并带领客户探秘当地人文地理、风俗民情、户外运动、商务活动及相关代订业务的综合性服务平台。"
|
app:layout_constraintTop_toTopOf="parent"
|
android:textColor="@color/textColor"
|
android:layout_marginTop="25dp"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
style="@style/style_tv_action"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:layout_marginBottom="15dp"
|
android:id="@+id/tv_action"
|
android:text="分享给好友"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|