<?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:hint="分享文案"
|
android:gravity="center"
|
app:layout_constraintTop_toTopOf="parent"
|
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>
|