mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
39 lines
1.6 KiB
XML
39 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
style="@style/AwesomeBar"
|
|
android:background="@drawable/tabs_tray_bg_repeat">
|
|
|
|
<view class="org.mozilla.gecko.AwesomeBar$AwesomeBarEditText"
|
|
android:id="@+id/awesomebar_text"
|
|
style="@style/AddressBar.Button"
|
|
android:layout_margin="4dip"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerVertical="true"
|
|
android:paddingLeft="15dip"
|
|
android:paddingRight="40dip"
|
|
android:hint="@string/awesomebar_default_text"
|
|
android:inputType="textUri|textNoSuggestions"
|
|
android:imeOptions="actionSearch"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:gravity="center_vertical|left">
|
|
<requestFocus/>
|
|
</view>
|
|
|
|
<LinearLayout android:layout_width="4dp"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical"
|
|
android:layout_alignParentRight="true"/>
|
|
|
|
<ImageButton android:id="@+id/awesomebar_button"
|
|
style="@style/AddressBar.ImageButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="15dip"
|
|
android:layout_centerVertical="true"
|
|
android:layout_alignRight="@id/awesomebar_text"
|
|
android:visibility="gone"
|
|
android:src="@drawable/ic_awesomebar_go"/>
|
|
|
|
</RelativeLayout>
|