Я реализовал PlaceAutocompleteFragment в действии и успешно работает. Но как реализовать то же самое в фрагменте в android? Я реализовал placeautocomplete фрагмент, подобный этому
PlaceAutocompleteFragment autocompleteFragment1 = (PlaceAutocompleteFragment)
getFragmentManager().findFragmentById(R.id.place_autocomplete_fragment1);
Ошибка, которую я получаю,
Неиспользуемые типы, не могут использовать 'android.support.v4.app.Fragment' для com.google.android.gms.location.PlaceAutocompleteFragment.
XML LAYOUT IS
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/button_background"
card_view:cardCornerRadius="4dp"
card_view:contentPadding="0dp">
<fragment
android:id="@+id/place_autocomplete_fragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter Place"
android:background="#fff"
android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"
/>
</android.support.v7.widget.CardView>
Заранее спасибо