mirror of https://github.com/kurisufriend/Clover
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
923 B
27 lines
923 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="8dp" >
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/reply_captcha_tap_to_reload"
|
|
android:textSize="16sp" />
|
|
|
|
<org.floens.chan.ui.view.LoadView
|
|
android:id="@+id/reply_captcha_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:layout_gravity="center" />
|
|
|
|
<EditText
|
|
android:id="@+id/reply_captcha"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/reply_captcha"
|
|
android:inputType="textNoSuggestions" />
|
|
|
|
</LinearLayout>
|
|
|