我有一个自定义的DialogFragment,里面有一个ArrayAdapter,里面有一些editTexts。显示对话框时,即使我按下编辑文本,也不会出现软键盘。编辑文本确实成为焦点,但键盘永远不会出现。
如果我不使用适配器并且只使用带有编辑文本的视图,它可以很好地工作,但是只要我添加适配器,我就会遇到问题。
我的代码如下。任何帮助都会非常感激。
先谢谢。
public class ParameterDialog extends DialogFragment {
Context context;
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
ArrayList<Parameter> params = this.getArguments().getParcelableArrayList(MainActivity.KEY_PARAMS_TO_DIALOG);
String name = this.getArguments().getString(MainActivity.KEY_NAME_TO_DIALOG);
context = getActivity();
// Use the Builder class for convenient dialog construction
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
ParameterDialogAdapter pda = new ParameterDialogAdapter(context,R.layout.parameter_config_string , params);
// Inflate and set the layout for the dialog
// Pass null as the parent view because its going in the dialog layout
builder
.setTitle(name)
.setAdapter(pda,null)
.setPositiveButton("Send", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
}
})
.setNegativeButton(android.R.string.cancel, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
}
});
// Create the AlertDialog object and return it
return builder.create();
}}
-
public class ParameterDialogAdapter extends ArrayAdapter<Parameter> {
Context context;
int layoutResourceId;
ArrayList<Parameter> data= null;
public ParameterDialogAdapter(Context context, int layoutResourceId, ArrayList<Parameter> data) {
super(context, layoutResourceId, data);
this.layoutResourceId = layoutResourceId;
this.context = context;
this.data = data;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View row = convertView;
//ParameterHolder holder = null;
final LayoutInflater inflater = ((Activity)context).getLayoutInflater();
final int p =position;
row = inflater.inflate(layoutResourceId, parent, false);
return row;
}}
-layout
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/paramValueHolder"
android:paddingRight="10dp"
android:paddingLeft="10dp"
android:paddingBottom="5dp">
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/paramValue"
android:hint="Value"
android:textColor="@color/text_grey" />
-Code to Show Dialog
ParameterDialog pDialog = new ParameterDialog ();
Bundle bundle = new Bundle();
bundle.putString(KEY_NAME_TO_DIALOG,action.getName());
bundle.putParcelableArrayList(KEY_PARAMS_TO_DIALOG, params);
pDialog.setArguments(bundle);
pDialog.setArguments(bundle);
pDialog.show(ft, "parameter_dialog");
答案 0 :(得分:5)
使用包含FragmentDialog
的{{1}}时,我遇到了类似的问题。 ListView
中的项目包含ListView
小部件,但未显示软键盘。
我发现的一种解决方法是在EditText
的根布局中放置一个不可见的EditText
。
例如:
list_layout.xml:
FragmentDialog
DialogFragment按如下方式创建视图:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:id="@android:id/list"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone" />
</LinearLayout>
希望这有帮助
答案 1 :(得分:0)
将list descendants属性设置为list_item_layout文件的true。 我希望它有所帮助