AcLoc_app/app/src/main/res/layout/fragment_map.xml

54 lines
2.2 KiB
XML
Raw Normal View History

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"
android:id="@+id/rlMap"
2025-05-12 19:18:26 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
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
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"
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"
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>
<!-- ListView for search suggestions -->
<ListView
android:id="@+id/lvSuggestions"
2025-05-12 19:18:26 +00:00
android:layout_width="match_parent"
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
</RelativeLayout>