Remove obsolete entries from .gitignore.
[chromium-blink-merge.git] / components / cronet / android / sample / res / layout / dialog_url.xml
blob29cf9c66bf03ad679a0a7718a71abbf178917fb4
1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2     android:orientation="vertical"
3     android:layout_width="wrap_content"
4     android:layout_height="wrap_content">
6     <TextView
7         android:id="@+id/urlView"
8         android:layout_width="wrap_content"
9         android:layout_height="wrap_content"
10         android:layout_marginTop="6dp"
11         android:layout_marginStart="4dp"
12         android:textSize="16sp"
13         android:text="@string/urlText" />
15     <EditText
16         android:id="@+id/urlText"
17         android:layout_width="match_parent"
18         android:layout_height="wrap_content"
19         android:inputType="textUri" />
21     <TextView
22         android:id="@+id/postView"
23         android:layout_width="wrap_content"
24         android:layout_height="wrap_content"
25         android:layout_marginTop="26dp"
26         android:layout_marginStart="4dp"
27         android:textSize="16sp"
28         android:text="@string/postText" />
30     <EditText
31         android:id="@+id/postText"
32         android:layout_width="match_parent"
33         android:layout_height="wrap_content"
34         android:inputType="text" />
36 </LinearLayout>