gpt4 book ai didi

android - dialogfragment 中的 Autocompletetextview 在 android 中显示建议

转载 作者:行者123 更新时间:2023-11-30 02:42:35 25 4
gpt4 key购买 nike

我有一个像这样的 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 文件 from.xml 中,它包含一个自动完成的 TextView 。这是 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>

我使用以下代码在单击按钮时弹出对话框 fragment 。所以我这样给出:

 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");


}
});

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

     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);
}
});

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

最佳答案

我认为,您需要在对话框自定义 View 中找到控件。我没有在您的代码中看到从 View 中找到控件。希望得到帮助。
在您的 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();

关于android - dialogfragment 中的 Autocompletetextview 在 android 中显示建议,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25562609/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com