aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/post_location_settings_search.xml
blob: 9cd99bdda6d586c92bca39a4f95bcafd055ac73a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/sectionLocationSearch"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="8dp"
    android:layout_marginRight="8dp"
    android:orientation="horizontal">

    <EditText
        android:id="@+id/searchLocationText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:hint="@string/current_location"
        android:imeOptions="actionSearch"
        android:inputType="text"
        android:textSize="@dimen/text_sz_large" />

    <Button
        android:id="@+id/searchLocation"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ellipsize="end"
        android:lines="1"
        android:text="@string/search_current_location"
        android:textSize="@dimen/text_sz_large" />
</LinearLayout>