]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/create_home_screen_shortcut_dialog.xml
Add the ability to edit bookmarks.
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / create_home_screen_shortcut_dialog.xml
index aef2de149cac760f75d643f88191515551b48802..5e9241112ee3752eda2bc09e51d9470ab1008b28 100644 (file)
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright 2015 Soren Stoutner
+  Copyright 2015-2016 Soren Stoutner <soren@stoutner.com>.
 
-  This file is part of Privacy Browser <https://privacybrowser.stoutner.com/>.
+  This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
 
   Privacy Browser is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>. -->
 
 <RelativeLayout
-    android:id="@+id/createHomeScreenShortcutDialogRelativeLayout"
+    android:id="@+id/create_home_screen_shortcut_dialog_relativelayout"
     xmlns:android="http://schemas.android.com/apk/res/android"
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content" >
+    android:layout_height="wrap_content"
+    android:layout_width="match_parent" >
 
-    <!-- android:imeOptions="actionGo" sets the keyboard to have a "go" key instead of a "new line" key. -->
-    <!-- android:inputType="textUri" disables spell check in the EditText and changes the "go" key from a check mark to an arrow. -->
-    <!-- android:imeOptions="actionGo" sets the keyboard to have a "go" key instead of a "new line" key. -->
+    <!-- `android:imeOptions="actionGo"` sets the keyboard to have a "go" key instead of a "new line" key.
+        `android:inputType="textUri"` disables spell check in the EditText.
+        `android:singleLine="true"` is not needed in a Dialog.
+        We can't use `android:imeOptions=flagNoExtractUi"` because it disables tapping to select in landscape orientation on small devices.-->
     <EditText
-        android:id="@+id/shortcutNameEditText"
-        android:layout_width="match_parent"
+        android:id="@+id/shortcut_name_edittext"
         android:layout_height="wrap_content"
+        android:layout_width="match_parent"
         android:layout_marginTop="16dp"
         android:layout_marginLeft="4dp"
         android:layout_marginRight="4dp"
         android:layout_marginBottom="16dp"
+        android:hint="@string/shortcut_name"
         android:imeOptions="actionGo"
         android:inputType="textUri" />
-
 </RelativeLayout>
\ No newline at end of file