|
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/. --> |
|
5 |
|
6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
7 android:layout_width="wrap_content" |
|
8 android:layout_height="wrap_content" |
|
9 android:orientation="horizontal" |
|
10 android:background="@drawable/suggestion_selector" |
|
11 android:gravity="center_vertical" |
|
12 android:clickable="true" |
|
13 android:padding="7dp"> |
|
14 |
|
15 <ImageView android:id="@+id/suggestion_magnifier" |
|
16 android:src="@drawable/ic_url_bar_search" |
|
17 android:layout_marginRight="3dip" |
|
18 android:layout_width="16dip" |
|
19 android:layout_height="16dip"/> |
|
20 |
|
21 <TextView android:id="@+id/suggestion_text" |
|
22 android:layout_width="wrap_content" |
|
23 android:layout_height="wrap_content" |
|
24 android:textColor="#222222" |
|
25 android:textSize="14sp" |
|
26 android:gravity="center_vertical" |
|
27 android:layout_gravity="center_vertical"/> |
|
28 |
|
29 </LinearLayout> |