3

我的问题:我有一个带有 OnItemClickListener 的 AutoCompleteTextView。这已经工作了 18 个月,但我现在注意到,当我在 HTC Desire S 上以横向模式选择项目时,它会引发 NullPointerException。(纵向模式或我使用的任何其他手机或模拟器都没有错误测试它)。

AdapterView<?> av参数作为空值传入。为什么会这样,我该如何解决?

代码 :

myAutoCompleteTextView = (AutoCompleteTextView) findViewById(R.id.myAutoCompleteTextView);
myAutoCompleteTextView.setSingleLine();

myAutoCompleteTextView.setOnItemClickListener(new OnItemClickListener() {
    public void onItemClick(AdapterView<?> av, View v, int index, long arg) {
        String selectedItem = (String)av.getItemAtPosition(index);  
        //Do stuff with selected item ...
    }
}

错误 :

 java.lang.NullPointerException
    at uk.co.myCompany.mobile.android.myCompanymobile.pages.groups.AbstractGroupSelectionPage$3.onItemClick(AbstractGroupSelectionPage.java:228)
    at android.widget.AutoCompleteTextView.onCommitCompletion(AutoCompleteTextView.java:993)
    at com.android.internal.widget.EditableInputConnection.commitCompletion(EditableInputConnection.java:76)
    at com.android.internal.view.IInputConnectionWrapper.executeMessage(IInputConnectionWrapper.java:368)
    at com.android.internal.view.IInputConnectionWrapper$MyHandler.handleMessage(IInputConnectionWrapper.java:86)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:150)
    at android.app.ActivityThread.main(ActivityThread.java:4385)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:507)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:849)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:607)
    at dalvik.system.NativeStart.main(Native Method)

额外代码 - 我的自定义适配器内部类:

/**
 * An inner class to simply make a custom adapter in which we can alter the on-screen look of selected groups.
 */
private class SelectedGroupAdapter extends ArrayAdapter<Group> {
    private ArrayList<Group> items;
    private int layout;

    public SelectedGroupAdapter(Context context, int layout, ArrayList<Group> items) {
        super(context, layout, items);
        this.items = items;
        this.layout = layout;
    }
    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View v = convertView;
        if (v == null) {
            LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            v = vi.inflate(layout, null);
        }                           
        Group o = items.get(position);

        //Display the group name and number of contacts
        if (o != null) {
            TextView groupName = (TextView) v.findViewById(R.id.groupName);
            TextView noOfContacts = (TextView) v.findViewById(R.id.noOfContacts);
            if (groupName != null) {
                groupName.setText(o.getGroupName());
            }
            if(noOfContacts != null) {
                if (o.isDynamic())
                    noOfContacts.setText(getString(R.string.dynamic));
                else {
                    int contactsCount = o.getGroupSize();
                    if(contactsCount == 1) noOfContacts.setText(contactsCount + " " + getString(R.string.contact));
                    else noOfContacts.setText(contactsCount + " " + getString(R.string.contacts));
                }
            }
        }
        return v;
    }              
}  
4

1 回答 1

0

我的预感是,既然您android:configChanges="orientation"在清单中声明,那么当您旋转旧OnItemClickListener布局时,旧布局仍然存在,并且由于您在技术上拥有一个新布局,因此AdapterView在方向更改之前使用的布局不再存在,因此为空当您单击一个项目时。

如果是这种情况,我认为有两件事可以解决这个问题:

  1. 删除orientation清单中的选项。您放置的任何事件都会configChanges告诉 Android “我正在处理此配置更改,所以让我处理它”,而不是让 Android 处理它。在方向改变的情况下,Android 的正常操作是销毁并重新创建你的Activity(它会自动用数据重新填充一些Views)。

  2. 如果您决定需要处理方向更改,则覆盖onConfigurationChanged()并将 设置为应该在方法中重新创建OnItemClickListener的新AdapterView对象(ListView, GridView,无论您使用哪个)onCreate

于 2012-06-20T14:26:11.897 回答