1
我想創建一個帶有AutoCompleteTextView的DialogBox。沒關係,我也可以顯示自動完成列表和所有內容。問題是我不能削減對下拉列表的看法。自定義AutoCompleteTextView佈局android
這是我在做什麼在主要活動:
DialogBox DB = new DialogBox(MyActivity.this);
DB.createDialog();
而且,在創建另一個類的我:
public DialogBox(Context c)
{
context = c;
}
public void createDialog()
{
AlertDialog.Builder builder = new AlertDialog.Builder(context);
LayoutInflater inflater = ((Activity) context).getLayoutInflater();
final View PopupLayout = inflater.inflate(R.layout.dialog_box, null);
builder.setView(PopupLayout);
//Autocomplete:
final AutoCompleteTextView textView = (AutoCompleteTextView) PopupLayout.findViewById(R.id.autocomplete_companies);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(context, R.layout.dialog_box, R.id.autocomplete_companies, COMPANIES);
textView.setAdapter(adapter);
}
如果我試圖改變R.layout.dialog_box我得到NullPointerExceptions或其他錯誤。
編輯:這是我的XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ImageView
android:layout_width="match_parent"
android:layout_height="64dp"
android:background="#FFFFBB33"
android:contentDescription="@string/app_name"
android:scaleType="center" />
<AutoCompleteTextView
android:id="@+id/autocomplete_companies"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:hint="Company Name" />
<EditText
android:id="@+id/username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginTop="16dp"
android:hint="@string/username"
android:inputType="textEmailAddress" />
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginTop="4dp"
android:fontFamily="sans-serif"
android:hint="@string/password"
android:inputType="textPassword" />
任何想法,我做錯了?
你能後的XML的內容,你所提到的錯誤的痕跡? –
新增...謝謝 – pacavied