gpt4 book ai didi

android - 使用 SimpleCursorAdapter 的 onLoaderFinished 中的 NullPointerException

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:00:31 26 4
gpt4 key购买 nike

我已经从使用 newViewbindViewResourceCursorAdapter 切换到我正在使用的 SimpleCursorAdapter只有 getView 方法。

现在我在 onLoaderFinished 中有一个错误。虽然它在 adapter.swapCursor(cursor) 上给了我 NullPointerException,但我的适配器和游标对象都是 NOT null。我将在下面发布我的所有代码。非常感谢任何帮助(没有多少头发可以拔掉)。

import android.annotation.SuppressLint;
import android.content.Context;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.provider.ContactsContract;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.LoaderManager;
import android.support.v4.content.CursorLoader;
import android.support.v4.content.Loader;
import android.support.v4.widget.ResourceCursorAdapter;
import android.util.Log;
import android.util.SparseBooleanArray;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.view.Window;
import android.widget.CheckBox;
import android.widget.ListView;
import android.widget.TextView;

public class ContactSelect extends FragmentActivity implements LoaderManager.LoaderCallbacks<Cursor> {
private static final int LOADER_ID = 1;
private MyAdapter adapter;
private ListView list;
private View row;
private SparseBooleanArray checkedState = new SparseBooleanArray();

@SuppressLint({ "NewApi", "NewApi" })
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
setContentView(R.layout.activity_contact_select);

adapter = new MyAdapter(this, R.layout.contacts_select_row, null, null, null, 0);

getSupportLoaderManager().initLoader(LOADER_ID, null, this);

list = (ListView)findViewById(R.id.list);

list.setAdapter(adapter);
list.setEmptyView(findViewById(R.id.empty));

}

@SuppressLint("NewApi")
public Loader<Cursor> onCreateLoader(int arg0, Bundle arg1) {
final String projection[] = new String[]{ContactsContract.Contacts._ID, ContactsContract.Contacts.DISPLAY_NAME};
final Uri uri = ContactsContract.Contacts.CONTENT_URI;

final String selection = ContactsContract.Contacts.HAS_PHONE_NUMBER + "=1" +
" AND " + ContactsContract.Contacts.IN_VISIBLE_GROUP + " =1";

final String order = ContactsContract.Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC";

final CursorLoader loader = new CursorLoader(this, uri, projection, selection, null, order);

return loader;
}

public void onLoadFinished(Loader<Cursor> loader, Cursor cursor) {
for(int i=0;i<cursor.getCount();i++){
checkedState.put(i, false);
}

adapter.swapCursor(cursor);
}

public void onLoaderReset(Loader<Cursor> loader) {
adapter.swapCursor(null);
}

private class MyAdapter extends SimpleCursorAdapter implements OnClickListener{
private CheckBox markedBox;
private TextView familyText;
private Context context;
private Cursor cursor;

public MyAdapter(Context context, int layout, Cursor c, String[] from,
int[] to, int flags) {
super(context, layout, c, from, to, flags);

this.context = context;
this.cursor = getCursor();
}

@Override
public View getView(int position, View view, ViewGroup group) {

final LayoutInflater li = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
row = li.inflate(R.layout.contacts_select_row, group, false);

view.setTag(cursor.getPosition());
view.setOnClickListener(this);

familyText = (TextView)view.findViewById(R.id.contacts_row_family_name);
markedBox = (CheckBox)view.findViewById(R.id.contacts_row_check);
familyText.setText(cursor.getString(cursor.getColumnIndexOrThrow(ContactsContract.Contacts.DISPLAY_NAME)));

boolean currentlyChecked = checkedState.get(cursor.getPosition());
markedBox.setChecked(currentlyChecked);


setProgressBarIndeterminateVisibility(false);

return super.getView(position, view, group);
}

public void onClick(View view) {
int rowId = (Integer)view.getTag();
Log.d("OnClick", String.valueOf(rowId));
boolean currentlyChecked = checkedState.get(rowId);
markedBox.setChecked(!currentlyChecked);
checkedState.put(rowId, !currentlyChecked);
Log.d("checkedState", "checkedState(" + rowId + ") = " + checkedState.get(rowId));
}
}
}

最佳答案

调用 SimpleCursorAdapter 类的 swapCursor 方法将触发一个函数,该函数将列名从 String 数组提供给构造函数(第 4 个参数)到表示列索引的整数数组。当您在 MyAdapter 的构造函数中为代表游标中的列名称的 String 数组传递 null 时,这将抛出一个 NullPointerException 稍后当 swapCursor 将尝试进行映射时(NullPointerException 应该出现在方法 findColumns 中,这是实际的方法使用列名 String 数组)。

解决方案是传递一个有效的 String 数组,您可能还想对表示放置数据的 View 的 id 的 int 数组执行此操作:

String[] from = {ContactsContract.Contacts.DISPLAY_NAME};
int[] to = {R.id.contacts_row_family_name, R.id.contacts_row_check};
adapter = new MyAdapter(this, R.layout.contacts_select_row, null, from, to, 0);

我不知道您要做什么,但是您对 getView 方法的实现不太正确:

你为 getView 方法做一些正常的事情(创建布局、搜索 View 、绑定(bind)数据)然后你简单地从父类(super class)返回 View (?!?),你可能只是查看没有任何内容的默认布局。

您编写 getView 方法的方式不是很有效,您可能需要查看 View 回收和 View 持有者模式。

cursor.getPosition() 不会执行您想要的操作,因为您没有将光标移动到正确的位置。默认情况下,基于游标的适配器会在 getView 方法中为您执行此操作,但是,当您覆盖该方法时,您的工作就是移动光标的位置。

您应该保留 getView 方法并使用 newViewbindView 这两个方法,因为它们提供了更好的逻辑分离。

关于android - 使用 SimpleCursorAdapter 的 onLoaderFinished 中的 NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12235663/

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