1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/base/resources/layout/find_in_page_content.xml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,39 @@ 1.4 +<?xml version="1.0" encoding="utf-8"?> 1.5 +<merge xmlns:android="http://schemas.android.com/apk/res/android"> 1.6 + 1.7 + <view class="org.mozilla.gecko.CustomEditText" 1.8 + android:id="@+id/find_text" 1.9 + android:layout_width="0dip" 1.10 + android:layout_height="wrap_content" 1.11 + android:layout_weight="1.0" 1.12 + android:layout_marginLeft="5dip" 1.13 + android:layout_marginRight="5dip" 1.14 + android:contentDescription="@string/find_text" 1.15 + android:background="@drawable/url_bar_entry" 1.16 + android:singleLine="true" 1.17 + android:textColor="#000000" 1.18 + android:textCursorDrawable="@null" 1.19 + android:inputType="text" 1.20 + android:paddingLeft="15dip" 1.21 + android:paddingRight="15dip" 1.22 + android:textColorHighlight="@color/url_bar_text_highlight" 1.23 + android:imeOptions="actionSearch" 1.24 + android:selectAllOnFocus="true" 1.25 + android:gravity="center_vertical|left"/> 1.26 + 1.27 + <ImageButton android:id="@+id/find_prev" 1.28 + style="@style/FindBar.ImageButton" 1.29 + android:contentDescription="@string/find_prev" 1.30 + android:src="@drawable/find_prev"/> 1.31 + 1.32 + <ImageButton android:id="@+id/find_next" 1.33 + style="@style/FindBar.ImageButton" 1.34 + android:contentDescription="@string/find_next" 1.35 + android:src="@drawable/find_next"/> 1.36 + 1.37 + <ImageButton android:id="@+id/find_close" 1.38 + style="@style/FindBar.ImageButton" 1.39 + android:contentDescription="@string/find_close" 1.40 + android:src="@drawable/find_close"/> 1.41 + 1.42 +</merge>