当前位置: 首页 > 知识库问答 >
问题:

在显示android建议的对话框片段中自动完成文本视图

呼延曜灿
2023-03-14

我有这样一个dialogfragment类:

public class dialogfrag extends DialogFragment
    {

        @Override

        public Dialog onCreateDialog(Bundle savedInstanceState) {
            // TODO Auto-generated method stub
            AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
            // Get the layout inflater
            LayoutInflater inflater1 = getActivity().getLayoutInflater();


            // Inflate and set the layout for the dialog
            // Pass null as the parent view because its going in the dialog layout
            builder.setView(inflater1.inflate(R.layout.from, null))
            // Add action buttons
                   .setPositiveButton("OK", new DialogInterface.OnClickListener() {
                       @Override
                       public void onClick(DialogInterface dialog, int id) {
                           // sign in the user ...
                       }
                   })
                   .setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
                       public void onClick(DialogInterface dialog, int id) {

                       }
                   });      
            return builder.create();


        }

    }

在其布局xml文件中。xml它包含一个自动完成的文本视图。这是from的代码。xml文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal">

<TextView
    android:id="@+id/textView1"
    android:layout_width="fill_parent"
    android:layout_height="50dp"
    android:text="From"
    android:gravity="center"
    android:background="#FFFFBB33"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<AutoCompleteTextView
    android:id="@+id/autoCompleteTextView1d"
    android:layout_width="fill_parent"
    android:layout_marginTop="15dp"
    android:layout_height="wrap_content"
    android:hint="From" >

    <requestFocus />
</AutoCompleteTextView>

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Selected Place"
    android:layout_marginTop="20dp"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp"
    android:weightSum="2" >

</LinearLayout>

我使用以下代码在单击按钮时弹出对话框片段。所以我给出了这样的答案:

 Button from=(Button)rootView.findViewById(R.id.button4);


    from.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
             DialogFragment dialog=new dialogfrag();
                dialog.show(getFragmentManager(), "fromtag");


        }
    });

现在我需要创建一个自动完成文本视图的对象,它应该向我展示建议。我有一个数组列表,其中包含自动完成文本视图的数组适配器的数据,我这样编码(这里actv1是自动完成文本视图的对象):

     actv1.addTextChangedListener(new TextWatcher() {

             @Override
            public void onTextChanged(CharSequence s, int start, int before,
                    int count) {

                 String filter = s.toString().toLowerCase();
                listItems = new ArrayList<String>();
                for (String listItem : loc) {
                    if (listItem.toLowerCase().contains(filter))
                    {
                        listItems.add(listItem);

                    }

                }
                if (listItems.size() < 1){

                Toast toast = Toast.makeText(getActivity().getApplicationContext(),
                        "No entries contain your search parameters",
                        Toast.LENGTH_SHORT);

                toast.show();

                }
                ArrayAdapter<String> adapt=new ArrayAdapter<String>(getActivity(),android.R.layout.simple_list_item_1,listItems);
                actv1.setAdapter(adapt);
            //  actv1.setAdapter(new ArrayAdapter<String>(getActivity(),
                            //  android.R.layout.simple_list_item_1, listItems
                                //      .size()));
            }

            @Override
            public void beforeTextChanged(CharSequence s, int start, int count,
                    int after) {
            }

            @Override
            public void afterTextChanged(Editable s) {
                 ArrayAdapter<String> adapt=new ArrayAdapter<String>(getActivity(),android.R.layout.simple_list_item_1,listItems);
                actv1.setAdapter(adapt);
            }
        });

但问题是我不知道应该在哪里正确添加此代码,因此当我单击按钮时,会弹出一个对话框,其中包含自动完成的文本视图。在键入时,它应该显示使用我在这里提到的代码的建议。有人能帮我吗...

共有1个答案

楚鸿波
2023-03-14

我认为,您需要在对话框自定义视图中找到控件。我没有在您的代码中看到从视图中找到控件。希望得到帮助。
在您的onCreateDialog

LayoutInflater inflater1 = getActivity().getLayoutInflater();

View view = inflater1 .inflate(R.layout.from, null);
AutoCompleteTextView actv1  = (AutoCompleteTextView) view.findViewById(R.id.autoCompleteTextView1d);
actv1.addTextChangedListener(new TextWatcher() {

@Override
public void onTextChanged(CharSequence s, int start, int before,
                    int count) {
         Your code .........
}
}
   builder.setView(view);

return builder.create();
 类似资料:
  • 我正在使用AutoCompleteTextView进行地址建议。 我想做的是当用户输入地址(f. e.“Ma”)时,建议会显示为“Mary, Madley, Ma…”。 然后,当用户选择其中一个建议时,他会立即获得另一个包含整个地址的建议。 例如:他选择了“玛丽”,他得到了像“玛丽123,波士顿”、“玛丽1566,纽约”、“玛丽简569,纽约”这样的建议。 问题是建议填写了适配器,但没有显示。选择

  • 我正在学习本教程http://wptrafficanalyzer.in/blog/adding-google-places-autocomplete-api-as-custom-suggestions-in-android-search-dialog/但当我试图在搜索框中搜索时,它什么也没有显示 其他信息: 我把浏览器键放在代码中需要的地方。我通过此链接生成的浏览器密钥https://code.g

  • 我一直在处理。我能够得到建议和所有在下拉列表中,当我们键入。 我的问题是:我们能在建议下拉列表中突出显示键入的字符吗?

  • 我有一个来选择一个火车站,它使用两个不同的适配器: 适配器 1:包含最近和附近电台的固定列表(不需要软键盘即可通过键入进行筛选) 适配器 2:包含电台 sqlite 数据库的光标(确实需要软键盘通过键入进行过滤) 所以,我想阻止软键盘在自动完成文本视图获得焦点并使用ADAPTER 1时显示,但我还没有找到方法。 我目前正在使用它,但软键盘不断弹出:

  • 我有一个DialogFragment,它有一个包含的视图。每次我显示对话框时,edittext就会有焦点,键盘就会出现。 我怎样才能阻止它自动出现? 这是我的布局