私のアプリケーションのフラグメントに実装するには、Googleのプレースオートコンプリート(https://developers.google.com/places/android-api/autocomplete)を使用しようとしています。しかし、私はこれは、XMLファイルフラグメントを拡張するクラスにGoogleのPlaceAutoCompleteFragmentを実装する方法
<RelativeLayout
android:id="@+id/someRelativeLayout"
android:layout_width="wrap_content"
android:layout_height="36dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="30dp"
android:background="@drawable/some_drawable">
<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" />
</RelativeLayout>
である。これは、Javaコード
private PlaceAutocompleteFragment mSearchPAF;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.some_layout, container, false);
mSearchLocationPAF = (PlaceAutocompleteFragment) parentActivity.getFragmentManager().findFragmentById(R.id.place_autocomplete_fragment);
}
であるこの断片中に戻ってくる
Caused by: java.lang.IllegalArgumentException: Binary XML file line #30: Duplicate id 0x7f0f010f, tag null, or parent id 0x7f0f00c0 with another fragment for com.google.android.gms.location.places.ui.PlaceAutocompleteFragment
at android.app.FragmentManagerImpl.onCreateView(FragmentManager.java:2148)
、他のフラグメントに、このフラグメントからナビゲートするときにこのエラーを持って、
私はこの同じjavaとxmlファイルに別のマップフラグメントもありますが、私はこのポスト(Duplicate ID, tag null, or parent id with another fragment for com.google.android.gms.maps.MapFragment)の答えに従って解決することができましたが、このPlace Aut ocompleteフラグメント
自分の「PlaceAutoComplete」にIDを渡してください。 – tahsinRupam
@ tahsinRupamそれはどういう意味ですか?どのような例ですか? –
これは、2つの異なる 'PlaceAutoComplete'フラグメントで同じIDを使用している可能性があります。 – tahsinRupam