mobile/android/base/resources/layout/pin_site_dialog.xml

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
     3    - License, v. 2.0. If a copy of the MPL was not distributed with this
     4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     7               android:layout_width="fill_parent"
     8               android:layout_height="wrap_content"
     9               android:orientation="vertical">
    11     <LinearLayout android:layout_width="fill_parent"
    12                   android:layout_height="@dimen/browser_toolbar_height"
    13                   android:orientation="vertical"
    14                   android:background="@color/background_normal"
    15                   android:padding="4dip">
    17         <EditText android:id="@+id/search"
    18                   style="@style/UrlBar.Button"
    19                   android:layout_width="fill_parent"
    20                   android:layout_height="fill_parent"
    21                   android:padding="6dip"
    22                   android:hint="@string/pin_site_dialog_hint"
    23                   android:background="@drawable/url_bar_entry"
    24                   android:textColor="@color/url_bar_title"
    25                   android:textColorHint="@color/url_bar_title_hint"
    26                   android:textColorHighlight="@color/url_bar_text_highlight"
    27                   android:textSelectHandle="@drawable/handle_middle"
    28                   android:textSelectHandleLeft="@drawable/handle_start"
    29                   android:textSelectHandleRight="@drawable/handle_end"
    30                   android:textCursorDrawable="@null"
    31                   android:inputType="textUri|textNoSuggestions"
    32                   android:imeOptions="actionGo|flagNoExtractUi|flagNoFullscreen"
    33                   android:singleLine="true"
    34                   android:gravity="center_vertical|left"/>
    36     </LinearLayout>
    38     <org.mozilla.gecko.home.HomeListView android:id="@+id/list"
    39                                          android:layout_width="fill_parent"
    40                                          android:layout_height="0dip"
    41                                          android:layout_weight="1.0"/>
    43 </LinearLayout>

mercurial