map.xml 1.43 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:card_view="http://schemas.android.com/apk/res-auto"
              android:orientation="vertical" android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:weightSum="1">
    <TextView
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="82dp"
        android:layout_centerHorizontal="true"
        android:text="Terror inform is displayed in here."
        android:textAppearance="@style/TextAppearance.AppCompat.Headline" />

    <com.google.android.gms.maps.MapView
        android:id="@+id/mapView"
        android:layout_width="match_parent"
        android:layout_height="250dp"
        android:layout_weight="0.93"/>

    <android.support.v7.widget.CardView
        android:name="@+id/card_view"
        android:layout_width="400dp"
        android:layout_height="40dp"
        android:layout_gravity="center"
        card_view:cardCornerRadius="4dp"
        >

        <fragment
            android:id="@+id/place_autocomplete_fragment"
            android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            >
        </fragment>

    </android.support.v7.widget.CardView>

</LinearLayout>