从SQLite数据库加载数据到ListView

3

我正在尝试在Android中从SQLite数据库加载数据,并将其值设置到ListView中。问题是,当我在OnCreate中加载数据时,它不显示任何内容,但是当我刷新应用程序时,它会显示数据。

请帮助我解决这个问题!

加载任务代码:

public void loadTasks() {

    Cursor c = notesDb.rawQuery("SELECT * FROM notes", null);
    int titleIndex = c.getColumnIndex("title");
    int contentIndex = c.getColumnIndex("content");
    int dateIndex = c.getColumnIndex("date");
    int idIndex = c.getColumnIndex("object");
    if (c.moveToFirst()) {
        if (!titles.isEmpty()) {
            titles.clear();
        }
        if (!content.isEmpty()) {
            content.clear();
        }
        if (!dates.isEmpty()) {
            dates.clear();
        }
        if (!objectId.isEmpty()) {
            objectId.clear();
        }

        do {
            titles.add(c.getString(titleIndex));
            content.add(c.getString(contentIndex));
            dates.add(c.getString(dateIndex));
            objectId.add(c.getString(idIndex));

            Log.i("Title", c.getString(titleIndex));
            Log.i("Content", c.getString(contentIndex));
            Log.i("Date", c.getString(dateIndex));
            Log.i("Id", c.getString(idIndex));

        } while (c.moveToNext());

        tasksList.setAdapter(customAdapter);
        loadingBar.setVisibility(View.INVISIBLE);

    } else {

        if (titles.size() > 0 || content.size() > 0) {
            tasksList.setAdapter(customAdapter);
            loadingBar.setVisibility(View.INVISIBLE);
        } else {
            titles.add("Welcome To App !");
            content.add("Start taking notes by clicking the add button below !");

            final Calendar c1 = Calendar.getInstance();
            final String monthName = new SimpleDateFormat("MMMM").format(c1.getTime());
            dates.add(String.valueOf(monthName + " " + c1.get(Calendar.DAY_OF_MONTH)) + " " + c1.get(Calendar.YEAR));
            objectId.add("randomId");
            tasksList.setAdapter(customAdapter);
            loadingBar.setVisibility(View.INVISIBLE);
        }
    }
}

OnCreate 代码

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_dolt);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    loadTasks();

在OnCreate中向适配器传递数据:
customAdapter = new CustomAdapter(DoltActivity.this, titles, content, dates);

自定义Adapter代码:

public class CustomAdapter extends BaseAdapter{

ArrayList<String> title;
ArrayList<String> contents;
ArrayList<String> dates;
Context context;
private static LayoutInflater inflater=null;
public CustomAdapter(DoltActivity mainActivity, ArrayList<String> titles, ArrayList<String> content, ArrayList<String> date) {
    // TODO Auto-generated constructor stub
    title=titles;
    contents=content;
    dates=date;
    context=mainActivity;
    inflater = ( LayoutInflater )context.
            getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
@Override
public int getCount() {
    // TODO Auto-generated method stub
    return title.size();
}

@Override
public Object getItem(int position) {
    // TODO Auto-generated method stub
    return position;
}

@Override
public long getItemId(int position) {
    // TODO Auto-generated method stub
    return position;
}

@Override
public int getItemViewType(int position) {
    return CustomAdapter.IGNORE_ITEM_VIEW_TYPE;
}

public static class Holder
{
    TextView tv;
    TextView content;
    TextView date;
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
    // TODO Auto-generated method stub
    Holder holder = new Holder();
    View rowView = null;

    rowView = inflater.inflate(R.layout.custom_row, null);

    holder.tv = (TextView) rowView.findViewById(R.id.textView10);
    holder.content = (TextView) rowView.findViewById(R.id.textView3);
    holder.date = (TextView) rowView.findViewById(R.id.textView4);

    holder.tv.setText(title.get(position));
    holder.content.setText(contents.get(position));
    holder.date.setText(dates.get(position));

    rowView.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {

            DoltActivity.tapped = true;
            DoltActivity.id = position;
            Log.i("Position", String.valueOf(position));

            }
        });

    rowView.setOnLongClickListener(new View.OnLongClickListener() {
        @Override
        public boolean onLongClick(View view) {

            DoltActivity.longTapped = true;
            DoltActivity.id = position;

            Log.i("Long ", "Tapped");

            return true;
        }
    });


    return rowView;
}

}

刷新代码:

swipeRefresh.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
        @Override
        public void onRefresh() {
                loadTasks();               
            swipeRefresh.setRefreshing(false);
        }
    });

Thanks in advance !


你的customAdapter代码在哪里,你是如何将cursor传递给customAdapter的? - shanyour
@shanyour 我已经添加了那些代码!谢谢你的提醒!!! - Vignesh Raja
2个回答

2

请尝试以下方法:

1- 在将customAdapter设置给ListView之前,在loadTask()中初始化它,即在以下代码之前:

customAdapter = new CustomAdapter(getActivity(), titles, content, dates);
tasksList.setAdapter(customAdapter);

你的代码中似乎存在逻辑数据流错误,你在调用loadTask()后才初始化了customAdapter,但是在loadTask()内部,你正在使用该对象,而没有使用更新后的标题内容日期列表进行初始化。


0

在更新数组后创建您的适配器。将您的代码行移动到:

 customAdapter = new CustomAdapter(DoltActivity.this, titles, content, dates);

之前的状态:

tasksList.setAdapter(customAdapter);

此外,您可以将下面的代码移动到if之外,以消除代码重复。您的loadTask函数将如下所示:

public void loadTasks() {

Cursor c = notesDb.rawQuery("SELECT * FROM notes", null);
int titleIndex = c.getColumnIndex("title");
int contentIndex = c.getColumnIndex("content");
int dateIndex = c.getColumnIndex("date");
int idIndex = c.getColumnIndex("object");
if (c.moveToFirst()) {
    if (!titles.isEmpty()) {
        titles.clear();
    }
    if (!content.isEmpty()) {
        content.clear();
    }
    if (!dates.isEmpty()) {
        dates.clear();
    }
    if (!objectId.isEmpty()) {
        objectId.clear();
    }

    do {
        titles.add(c.getString(titleIndex));
        content.add(c.getString(contentIndex));
        dates.add(c.getString(dateIndex));
        objectId.add(c.getString(idIndex));

        Log.i("Title", c.getString(titleIndex));
        Log.i("Content", c.getString(contentIndex));
        Log.i("Date", c.getString(dateIndex));
        Log.i("Id", c.getString(idIndex));

    } while (c.moveToNext());

} else {

    if (titles.size() > 0 || content.size() > 0) {

    } else {
        titles.add("Welcome To App !");
        content.add("Start taking notes by clicking the add button below !");

        final Calendar c1 = Calendar.getInstance();
        final String monthName = new SimpleDateFormat("MMMM").format(c1.getTime());
        dates.add(String.valueOf(monthName + " " + c1.get(Calendar.DAY_OF_MONTH)) + " " + c1.get(Calendar.YEAR));
        objectId.add("randomId");

    }
}

customAdapter = new CustomAdapter(DoltActivity.this, titles, content, dates);
tasksList.setAdapter(customAdapter);
loadingBar.setVisibility(View.INVISIBLE);

}


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接