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

Side by Side Diff: samples/android/res/layout/main.xml

Issue 11362103: Rotating spheres sample (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More cleanup Created 8 years 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 | Annotate | Revision Log
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"
4 android:layout_width="fill_parent"
5 android:layout_height="fill_parent"
6 >
7 <EditText android:id="@+id/edit_message"
8 android:layout_width="match_parent"
9 android:layout_height="wrap_content"
10 />
11 <Button
12 android:layout_width="wrap_content"
13 android:layout_height="wrap_content"
14 android:onClick="sendMessage"
15 android:text="Send" />
16 <TextView android:id="@+id/output"
17 android:layout_weight="1"
18 android:layout_width="fill_parent"
19 android:layout_height="fill_parent"
20 android:hint="Result will show up here..."
21 />
22 </LinearLayout>
23
OLDNEW
« no previous file with comments | « samples/android/res/drawable-xhdpi/ic_launcher.png ('k') | samples/android/res/values/strings.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698