2025-05-12 19:18:26 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2025-05-20 22:31:40 +00:00
|
|
|
android:id="@+id/rlMap"
|
2025-05-12 19:18:26 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2025-05-20 22:31:40 +00:00
|
|
|
tools:context="com.example.acloc.fragments.MapFragment">
|
|
|
|
|
|
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
|
android:id="@+id/mapFrame"
|
|
|
|
|
android:name="com.google.android.gms.maps.SupportMapFragment"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent" />
|
2025-05-12 19:18:26 +00:00
|
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2025-05-20 22:31:40 +00:00
|
|
|
android:id="@+id/tilSearchLocation"
|
2025-05-12 19:18:26 +00:00
|
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-05-20 22:31:40 +00:00
|
|
|
android:layout_margin="16dp"
|
|
|
|
|
android:elevation="4dp"
|
|
|
|
|
app:endIconMode="custom"
|
|
|
|
|
app:endIconDrawable="@android:drawable/ic_menu_search"
|
|
|
|
|
app:boxCornerRadiusBottomEnd="8dp"
|
|
|
|
|
app:boxCornerRadiusBottomStart="8dp"
|
|
|
|
|
app:boxCornerRadiusTopEnd="8dp"
|
|
|
|
|
app:boxCornerRadiusTopStart="8dp">
|
2025-05-12 19:18:26 +00:00
|
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
|
|
|
android:id="@+id/etSearchLocation"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:hint="@string/Search_Place"
|
|
|
|
|
android:imeOptions="actionSearch"
|
2025-05-20 22:31:40 +00:00
|
|
|
android:background="@color/primaryVariant_dark"
|
|
|
|
|
android:inputType="text"
|
|
|
|
|
android:maxLines="1" />
|
|
|
|
|
|
2025-05-12 19:18:26 +00:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
|
|
2025-05-20 22:31:40 +00:00
|
|
|
<!-- ListView for search suggestions -->
|
|
|
|
|
<ListView
|
|
|
|
|
android:id="@+id/lvSuggestions"
|
2025-05-12 19:18:26 +00:00
|
|
|
android:layout_width="match_parent"
|
2025-05-20 22:31:40 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_below="@id/tilSearchLocation"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
|
android:background="@color/primaryVariant_dark"
|
|
|
|
|
android:elevation="4dp"
|
|
|
|
|
android:visibility="gone" />
|
2025-05-12 19:18:26 +00:00
|
|
|
|
2025-05-27 03:32:34 +00:00
|
|
|
</RelativeLayout>
|