0

logcatにエラーはありませんが、提案リストには表示されません。どこが間違っているのかわかりません。アラートダイアログボックスでオートコンプリートビューを膨らませています。これが私のコードです

reg_btn.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {


                final String[] devplatforms =
                     {
                     "C",
                     "C++",
                     "Java",
                     "iPhone",
                     "Android",
                     "ASP.NET",
                     "PHP",
                     "Python",
                     };


                AlertDialog.Builder adb = new AlertDialog.Builder(SettingsMain.this);
                LayoutInflater inflater = SettingsMain.this.getLayoutInflater(); 
                final View searchlayout = inflater.inflate(R.layout.search_friend, null);

               adb.setView(searchlayout)

               .setPositiveButton("Ok", new DialogInterface.OnClickListener() {  
                    public void onClick(DialogInterface dialog, int whichButton) {  
                        AutoCompleteTextView friend_name;
                        friend_name = (AutoCompleteTextView) searchlayout.findViewById(R.id.friend_name);
                        friend_name.setThreshold(1);
                        friend_name.setAdapter(new ArrayAdapter<String>(getApplicationContext(),android.R.layout.simple_dropdown_item_1line,devplatforms));

                        String name = friend_name.getText().toString();
                        Log.d( "ECHO" , "Pin Value : " + name);
                        return;                  
                       }  
                  })
               .setNegativeButton("Done", new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {


                        dialog.cancel(); 
                    }
                }); 

                    adb.show();  

    });
4

1 に答える 1

2

このコードは間違った場所にあるようです:

AutoCompleteTextView friend_name;
friend_name = (AutoCompleteTextView) searchlayout.findViewById(R.id.friend_name);
friend_name.setThreshold(1);
friend_name.setAdapter(new ArrayAdapter<String>(getApplicationContext(),android.R.layout.simple_dropdown_item_1line,devplatforms));

この行の上に移動します。

adb.setView(searchlayout)

レイアウトを膨らませましたが、「OK」ボタンで AutoCompleteTextView にアダプターを渡すだけです...ダイアログを表示する前に AutoCompleteTextView を設定します。

于 2013-01-20T17:51:07.453 に答える