Fixed typo in strings.xml
[pub/Android/ownCloud.git] / res / layout / edit_box_dialog.xml
index 060fafa..500945b 100644 (file)
@@ -1,70 +1,36 @@
-<?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
+<?xml version="1.0" encoding="utf-8"?>
+<!-- 
+    ownCloud Android client application
+
+    Copyright (C) 2012  Bartek Przybylski
+    Copyright (C) 2012-2013 ownCloud Inc.
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License version 2,
+    as published by the Free Software Foundation.
+  
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+-->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:gravity="clip_horizontal"
+    android:orientation="vertical" >
+
+    <EditText
+        android:id="@+id/user_input"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:ems="10" 
+               android:inputType="textNoSuggestions"
+               >
+
+    </EditText>
+
+</LinearLayout>