64 lines
2.3 KiB
XML
64 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:context=".activity.tts.TtsActivity">
|
|
|
|
<data>
|
|
|
|
<variable
|
|
name="click"
|
|
type="com.xxpatx.os.activity.tts.TtsActivity.BtnClick" />
|
|
|
|
<variable
|
|
name="body"
|
|
type="String" />
|
|
</data>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/root"
|
|
android:layout_width="340dp"
|
|
android:layout_height="300dp"
|
|
android:background="@drawable/location_background"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_margin="8dp"
|
|
android:layout_height="match_parent">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_body"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@{body}"
|
|
android:textColor="@color/black"
|
|
android:textSize="18sp"
|
|
tools:text="@string/app_name" />
|
|
|
|
</ScrollView>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_finish"
|
|
android:layout_width="56dp"
|
|
android:layout_height="56dp"
|
|
android:layout_marginTop="16dp"
|
|
android:adjustViewBounds="true"
|
|
android:onClick="@{click::exit}"
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/close"
|
|
app:layout_constraintEnd_toEndOf="@+id/root"
|
|
app:layout_constraintStart_toStartOf="@+id/root"
|
|
app:layout_constraintTop_toBottomOf="@+id/root" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</layout> |