blob: cbbbd0b67ee1d9fda7c035b09cfccb27be00c996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/image"
android:layout_width="220dip"
android:layout_height="42dip"
android:layout_gravity="center"
android:layout_marginBottom="5dip"
android:layout_marginTop="5dip"
android:gravity="center"
android:scaleType="fitXY"
android:src="@null" />
<EditText
android:id="@+id/text"
style="@style/edittext_dialog"
android:hint="@string/caches_recaptcha_hint"
android:inputType="textNoSuggestions" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_margin="7dip"
android:paddingLeft="3dip"
android:text="@string/caches_recaptcha_explanation"
android:textColor="@color/text_grey_dark"
android:textSize="12dip" />
</LinearLayout>
|