mobile/android/base/resources/layout/find_in_page_content.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 <merge xmlns:android="http://schemas.android.com/apk/res/android">
     4     <view class="org.mozilla.gecko.CustomEditText"
     5               android:id="@+id/find_text"
     6               android:layout_width="0dip"
     7               android:layout_height="wrap_content"
     8               android:layout_weight="1.0"
     9               android:layout_marginLeft="5dip"
    10               android:layout_marginRight="5dip"
    11               android:contentDescription="@string/find_text"
    12               android:background="@drawable/url_bar_entry"
    13               android:singleLine="true"
    14               android:textColor="#000000"
    15               android:textCursorDrawable="@null"
    16               android:inputType="text"
    17               android:paddingLeft="15dip"
    18               android:paddingRight="15dip"
    19               android:textColorHighlight="@color/url_bar_text_highlight"
    20               android:imeOptions="actionSearch"
    21               android:selectAllOnFocus="true"
    22               android:gravity="center_vertical|left"/>
    24     <ImageButton android:id="@+id/find_prev"
    25                  style="@style/FindBar.ImageButton"
    26                  android:contentDescription="@string/find_prev"
    27                  android:src="@drawable/find_prev"/>
    29     <ImageButton android:id="@+id/find_next"
    30                  style="@style/FindBar.ImageButton"
    31                  android:contentDescription="@string/find_next"
    32                  android:src="@drawable/find_next"/>
    34     <ImageButton android:id="@+id/find_close"
    35                  style="@style/FindBar.ImageButton"
    36                  android:contentDescription="@string/find_close"
    37                  android:src="@drawable/find_close"/>
    39 </merge>

mercurial