2019-02-13 19:52:55 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-08-19 00:06:26 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2019-02-13 19:52:55 +00:00
|
|
|
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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/registration_captcha_title"
|
|
|
|
style="@style/Signal.Text.Headline"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="24dp"
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
android:layout_marginEnd="24dp"
|
|
|
|
android:text="@string/RegistrationActivity_we_need_to_verify_that_youre_human"
|
|
|
|
android:gravity="center"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<WebView
|
|
|
|
android:id="@+id/registration_captcha_web_view"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/registration_captcha_title" />
|
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|