Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Side by Side Diff: components/cronet/android/sample/res/layout/dialog_url.xml

Issue 1221513002: Update the cronet sample app with new async APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add WritableByteChannel Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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">
5
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" />
14
15 <EditText
16 android:id="@+id/urlText"
17 android:layout_width="match_parent"
18 android:layout_height="wrap_content"
19 android:inputType="textUri" />
20
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" />
29
30 <EditText
31 android:id="@+id/postText"
32 android:layout_width="match_parent"
33 android:layout_height="wrap_content"
34 android:inputType="text" />
35
36 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698