-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathactivity_hike_search.xml
More file actions
30 lines (28 loc) · 1.11 KB
/
activity_hike_search.xml
File metadata and controls
30 lines (28 loc) · 1.11 KB
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
30
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<AutoCompleteTextView
android:id="@+id/rider_destination"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/RiderDestination"
android:inputType="textNoSuggestions"
android:maxLines="1"
android:textColor="@color/black"
android:textColorHint="#03A9F4"
android:textIsSelectable="false"
android:textSize="18sp"
android:textStyle="bold" />
<Button
android:id="@+id/search_Hike_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:background="@color/logingrey"
android:onClick="searchDestination"
android:text="@string/search"
android:textColor="@color/white"
android:textSize="14sp" />
</LinearLayout>