]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/layout/create_home_screen_shortcut_dialog.xml
Initial bookmarks implementation. Fix for Custom User Agent not working. https...
[PrivacyBrowserAndroid.git] / app / src / main / res / layout / create_home_screen_shortcut_dialog.xml
index 6cf50f006c2f2ce3d20bfc4d948579a3af0c54df..32d2eb4d997fce68b98497025c4246695494e5c9 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright 2015 Soren Stoutner <soren@stoutner.com>.
+  Copyright 2015-2016 Soren Stoutner <soren@stoutner.com>.
 
   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
 
   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:imeOptions="actionGo" sets the keyboard to have a "go" key instead of a "new line" key. -->
-    <!-- android:imeOptions=flagNoExtractUi" doesn't cover up the entire UI when typing in landscape orientation. -->
-    <!-- android:inputType="textUri" disables spell check in the EditText. -->
+    <!-- android:imeOptions="actionGo" sets the keyboard to have a "go" key instead of a "new line" key.
+        android:imeOptions=flagNoExtractUi" doesn't cover up the entire UI when typing in landscape orientation.
+        android:inputType="textUri" disables spell check in the EditText.
+        android:singleLine="true" is not needed in a Dialog.-->
     <EditText
-        android:id="@+id/shortcutNameEditText"
+        android:id="@+id/shortcut_name_edittext"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:layout_marginTop="16dp"
         android:layout_marginLeft="4dp"
         android:layout_marginRight="4dp"
         android:layout_marginBottom="16dp"
+        android:hint="@string/shortcut_name"
         android:imeOptions="actionGo|flagNoExtractUi"
         android:inputType="textUri" />