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

Side by Side Diff: platform_tools/android/apps/viewer/src/main/res/layout/state_item.xml

Issue 2004633002: Add drawer with state information (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Merge Created 4 years, 6 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 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:orientation="vertical" android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:weightSum="1">
6
7 <TextView
8 android:layout_width="match_parent"
9 android:layout_height="wrap_content"
10 android:layout_marginTop="10dp"
11 android:layout_marginLeft="10dp"
12 android:layout_marginBottom="0dp"
13 android:textAppearance="?android:attr/textAppearanceLarge"
14 android:text="Name:"
15 android:id="@+id/nameText" />
16
17 <TextView
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:layout_marginBottom="10dp"
21 android:layout_marginLeft="10dp"
22 android:layout_marginTop="0dp"
23 android:textAppearance="?android:attr/textAppearanceMedium"
24 android:text="Value"
25 android:id="@+id/valueText" />
26
27 <Spinner
28 android:id="@+id/optionSpinner"
29 android:paddingTop="0dp"
30 android:paddingBottom="0dp"
31 android:layout_width="match_parent"
32 android:layout_height="wrap_content">
33 </Spinner>
34
35 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698