mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
1015 B
XML
23 lines
1015 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/suggestion_selector"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/suggestion_magnifier"
|
|
android:src="@drawable/ic_awesomebar_search"
|
|
android:layout_marginRight="3dip"
|
|
android:layout_width="16dip"
|
|
android:layout_height="16dip" />
|
|
|
|
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/suggestion_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="?android:attr/textColorPrimary"/>
|
|
|
|
</LinearLayout>
|