我正在尝试添加一个功能,只要用户点击editText开始输入最后一个空的gridview项,就会添加一个新的空gridview项。问题是当用户开始输入时,监听器不会被调用。我知道这里有一些关于类似问题的问题,但是我的gridView里面有一个editText,这就是我认为的问题。
这是我的听众:
roleLayout.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
System.out.println(roleArrayList.get(position).getRole() + "******");
if(roleArrayList.get(position).getRole().equals("")) {
if (roleArrayList.size() == 1 ) {
roleArrayList.add(new NewRoleElement());
} else {
if (!roleArrayList.get(roleArrayList.size() - 1).getRole().equals("")) {
roleArrayList.add(new NewRoleElement());
}
}
}
}
});
这是我GridView
的xml代码:
<GridView
android:id="@+id/roleList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:numColumns="1"
android:stretchMode="columnWidth" />
这是我的实际项目的xml代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_rowWeight="1"
android:background="@drawable/my_layout_bg"
android:orientation="horizontal">
<EditText
android:id="@+id/roleText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:ems="10"
android:hint="Enter a new role"
android:inputType="textPersonName" />
<CheckBox
android:id="@+id/checkBox"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="3"
android:text="Repeat?" />
</LinearLayout>
我的适配器代码在这里:
public class RoleAdapter extends BaseAdapter{
Context c;
public RoleAdapter(Context context) {
this.c = context;
}
@Override
public int getCount() {
return roleArrayList.size();
}
@Override
public Object getItem(int position) {
return roleArrayList.get(position);
}
@Override
public long getItemId(int position) {
return roleArrayList.indexOf(position);
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) c.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if (convertView == null) {
convertView = inflater.inflate(R.layout.role_template, null);
}
roleArrayList.get(position).setRoleInput((EditText) convertView.findViewById(R.id.roleText));
roleArrayList.get(position).setRepeatCheckBox((CheckBox) convertView.findViewById(R.id.checkBox));
return convertView;
}
}
答案 0 :(得分:0)
主要问题是EditText
和CheckBox
抓住焦点
在您的代码中尝试此操作。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_rowWeight="1"
android:descendantFocusability="blocksDescendants"
android:background="@drawable/my_layout_bg"
android:orientation="horizontal">
......
</LinearLayout>
在根xml代码中添加android:descendantFocusability="blocksDescendants"
。
另一种方式
您也可以在android:focusable="false"
中设置EditText
,并在android:clickable="false"
中设置CheckBox
。