1
地方自動完成片段的可視性我有這樣的XML代碼如何處理的Android
<fragment
android:id="@+id/place_autocomplete_fragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"/>
和Java代碼
PlaceAutocompleteFragment autocompleteFragment = (PlaceAutocompleteFragment)
getFragmentManager().findFragmentById(R.id.place_autocomplete_fragment);
autocompleteFragment.setOnPlaceSelectedListener(new PlaceSelectionListener() {
@Override
public void onPlaceSelected(Place place) {
// TODO: Get info about the selected place.
Log.i(TAG, "Place: " + place.getName());
}
@Override
public void onError(Status status) {
// TODO: Handle the error.
Log.i(TAG, "An error occurred: " + status);
}
});
我想做一個autocompletefragment開頭的無形的,當我點擊在按鈕上變得可見。 我該怎麼做? 對不起,我的英文。 謝謝!
一套清晰視野檢查https://stackoverflow.com/questions/7348150/android-why-setvisibilityview-gone-or-setvisibilityview-invisible-不要 – Pavan
PlaceAutocompleteFragment沒有方法setVisibility –
更改你想處理片段的可見性的問題標題,然後檢查這可能是幫助https://stackoverflow.com/questions/14347588/show-hide-fragment-in-android – Pavan