Temporal layout for rename
authorDavid A. Velasco <dvelasco@solidgear.es>
Wed, 11 Jul 2012 08:47:15 +0000 (10:47 +0200)
committerDavid A. Velasco <dvelasco@solidgear.es>
Wed, 11 Jul 2012 08:47:15 +0000 (10:47 +0200)
res/layout/edit_box_dialog.xml [new file with mode: 0644]

diff --git a/res/layout/edit_box_dialog.xml b/res/layout/edit_box_dialog.xml
new file mode 100644 (file)
index 0000000..060fafa
--- /dev/null
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="utf-8"?>\r
+<!-- \r
+  ownCloud Android client application\r
+\r
+  Copyright (C) 2012  Bartek Przybylski\r
+  This program is free software: you can redistribute it and/or modify\r
+  it under the terms of the GNU General Public License as published by\r
+  the Free Software Foundation, either version 3 of the License, or\r
+  (at your option) any later version.\r
+\r
+  This program is distributed in the hope that it will be useful,\r
+  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
+  GNU General Public License for more details.\r
+\r
+  You should have received a copy of the GNU General Public License\r
+  along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
+ -->\r
+\r<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"\r
+    android:layout_width="wrap_content"\r
+    android:layout_height="fill_parent"\r
+    android:gravity="center|fill"\r
+    android:orientation="vertical" >\r
+\r
+       <LinearLayout\r
+               android:id="@+id/LinearLayout1"\r
+               android:layout_width="match_parent"\r
+               android:layout_height="wrap_content"\r
+               android:layout_gravity="center_vertical"\r
+               android:layout_weight="1"\r
+               android:orientation="vertical" >\r
+    \r\r
+       <TextView\r
+           android:id="@+id/user_input"\r
+           android:layout_width="wrap_content"\r
+           android:layout_height="wrap_content"\r
+           android:layout_weight="1"\r
+           android:text="new_name" />\r
+    \r
+    </LinearLayout>\r
+    \r
+    <RelativeLayout\r
+        android:layout_width="match_parent"\r
+        android:layout_height="wrap_content"\r
+        android:layout_alignParentBottom="true" >\r
+\r
+        <LinearLayout\r
+            android:layout_width="match_parent"\r
+            android:layout_height="wrap_content"\r
+            android:weightSum="1" >\r
+\r
+            <Button\r
+                android:id="@+id/cancel"\r
+                android:layout_width="match_parent"\r
+                android:layout_height="wrap_content"\r
+                android:layout_weight=".5"\r
+                android:text="@string/common_cancel" />\r
+\r
+            <Button\r
+                android:id="@+id/ok"\r
+                android:layout_width="match_parent"\r
+                android:layout_height="wrap_content"\r
+                android:layout_weight=".5"\r
+                android:text="@string/common_ok"\r
+                android:textColor="@android:color/black" />\r
+\r
+        </LinearLayout>\r
+    </RelativeLayout>\r
+\r
+</LinearLayout>
\ No newline at end of file