android - App crashes when adding AutoCompleteTextView in PopupWindow? -
hello want add autocompletetextview in popup. such when type city name should come suggestion.. possible in popupwindow. trying this. view addresspopupview =addresslayoutinflater.inflate(r.layout.addressinput, null); autocompletetextview city = (autocompletetextview) addresspopupview.findviewbyid(r.id.city); string[] city ={"mumbai", "ahemadabad", "kolkata", "chennai", "thane"}; arrayadapter<string> adapter = new arrayadapter<string>(getactivity(), android.r.layout.simple_dropdown_item_1line, city); city.setadapter(adapter); popupwindow addresspopupwindow = new popupwindow(addresspopupview, viewgroup.layoutparams.wrap_content, viewgroup.layoutparams.wrap_content, true); addresspopupwindow.showatlocation(addresspopupview, gravity.center, 0, 0); logcat fatal exception: main android.view.windowmanager$badtokenexception: unable add window -- token android.view.viewro...