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

Unified Diff: apk/res/layout/activity_my.xml

Issue 949803002: Deconstructed APK prototyping Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « apk/res/drawable/app_icon.png ('k') | apk/res/mipmap-mdpi/app_icon.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apk/res/layout/activity_my.xml
diff --git a/apk/res/layout/activity_my.xml b/apk/res/layout/activity_my.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9a0ec0321499d42558875ee04a26d59f31298dbb
--- /dev/null
+++ b/apk/res/layout/activity_my.xml
@@ -0,0 +1,15 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="horizontal" >
+ <EditText android:id="@+id/edit_message"
+ android:layout_width="0dp"
+ android:layout_weight="1"
+ android:layout_height="wrap_content"
+ android:hint="@string/edit_message" />
+ <Button
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/button_send" />
+</LinearLayout>
« no previous file with comments | « apk/res/drawable/app_icon.png ('k') | apk/res/mipmap-mdpi/app_icon.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698