我正在尝试学习Android开发。作为一个学习项目,我正在创建一个“待办事项”应用程序。

我想从我的表填充数据的列表,这是我到目前为止有:

ListCursorAdapter.java

    package com.ryansmurphy.listado;

import android.content.Context;
import android.database.Cursor;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

/**
 * Created by ryanmurphy on 24/02/15.
 */
public class ListCursorAdapter extends CursorAdapter {

    public ListCursorAdapter(Context context, Cursor cursor) {
        super(context, cursor, 0);
    }

    @Override
    public View newView(Context context, Cursor cursor, ViewGroup parent) {
        return LayoutInflater.from(context).inflate(R.layout.item_todo, parent, false);
    }

    public void bindView(View view, Context context, Cursor cursor) {
        // Find fields to populate in inflated template
        TextView todo = (TextView) view.findViewById(R.id.todoText);
        // Extract properties from cursor
        String todoTextDB = cursor.getString(cursor.getColumnIndexOrThrow("todo"));
        // Populate fields with extracted properties
        todo.setText(todoTextDB);
    }
}


我在这里遇到两个错误:


extends cursor上。我收到错误Cannot resolve symbol
super(context, cursor, 0);上。我收到错误Object() in Object cannot be applied to


DatabaseHelper.java

package com.ryansmurphy.listado;

import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

/**
 * Created by ryanmurphy on 23/02/15.
 */
public class DatabaseHelper extends SQLiteOpenHelper {

    // Database Version
    private static final int DATABASE_VERSION = 1;

    // Database Name
    private static final String DATABASE_NAME = "listado";

    // Table Name
    private static final String TABLE_TODO = "todos";


    // Column names
    private static final String KEY_ID = "id";
    private static final String KEY_TODO = "todo";
    private static final String KEY_STATUS = "status";
    private static final String KEY_CREATED_AT = "created_at";


    // Table Create Statements
    // Todo table create statement
    private static final String CREATE_TABLE_TODO = "CREATE TABLE "
            + TABLE_TODO + "(" + KEY_ID + " INTEGER PRIMARY KEY," + KEY_TODO
            + " TEXT," + KEY_STATUS + " INTEGER," + KEY_CREATED_AT
            + " DATETIME" + ")";

    public DatabaseHelper(Context context) {
        super(context, DATABASE_NAME, null, DATABASE_VERSION);
    }

    @Override
    public void onCreate(SQLiteDatabase db) {

        // creating required table
        db.execSQL(CREATE_TABLE_TODO);
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        // on upgrade drop older tables
        db.execSQL("DROP TABLE IF EXISTS " + TABLE_TODO);

        // create new tables
        onCreate(db);
    }

    public void addRecord()
    {
        SQLiteDatabase database = getWritableDatabase();
        ContentValues values = new ContentValues();
        values.put("todo", "todo example");
        values.put("status", "not completed");
        database.insert("todos", null, values);
        database.close();
    }

    public Cursor getAll()
    {
        SQLiteDatabase database = getReadableDatabase();
        Cursor cursor = database.rawQuery("select * from todos",null);
        return cursor;
    }
}


现在我的listview个人行xml:
list_item.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="match_parent">
    <TextView
        android:id="@+id/todoText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="24dp"
        android:padding="6dp" />
</LinearLayout>


ActivityMain.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
    <TextView android:text="To Do List" android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/title" />
    <ListView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/listview"
        android:layout_below="@id/title"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_marginTop="42dp" />
</RelativeLayout>


MainActivity.Java

package com.ryansmurphy.listado;

import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ListView;


public class MainActivity extends ActionBarActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ListView lvItems = (ListView) findViewById(R.id.listview);
        // Setup cursor adapter using cursor from last step
        DatabaseHelper db = new DatabaseHelper();
        Cursor allRows = db.getAll();
        ListCursorAdapter todoAdapter = new ListCursorAdapter(this, allRows);
        //Attach cursor adapter to the ListView
        lvItems.setAdapter(todoAdapter);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        if(id == R.id.addItem)
        {
            addItem();
        }

        return super.onOptionsItemSelected(item);
    }

    public void addItem()
    {
        Intent addItemIntent= new Intent(MainActivity.this, AddItem.class);
        startActivity(addItemIntent);
    }
}


我在这里遇到两个错误:


DatabaseHelper db = new DatabaseHelper();上。我收到错误DatabaseHelper(Context) in DatabaseHelper cannot be applied
lvItems.setAdapter(todoAdapter);上。我收到错误setAdapter(android.widget.ListAdapter) in ListView cannot be applied


以上是我从谷歌搜索,尝试和尝试中获得的。我从一开始就一直不知道自己在做什么,但是我正在慢慢地了解这一点,并且想知道你们能在达到目标之后帮助我吗。谢谢

最佳答案

我将您的代码复制到一个新项目中,并进行了一些改动以使其正常运行。我完全剥离了某些区域-例如getAll()方法,然后用MainActivity中的查询替换了它。 Here是应用程序在首次加载时的外观,而here是单击“添加”几次后的外观。

对于它的价值,我认为有更简单的方法可以实现此目标-例如,通过使用SimpleCursorAdapter可以消除创建自己的自定义Adapter类的需要,并通过使MainActivity扩展ListActivityListFragment。但是,我坚持使用您的方法。

除了删除getAll()方法之外,我对DatabaseHelper进行了以下小的更改:

@Override
public void onCreate(SQLiteDatabase db) {
    db.execSQL("CREATE TABLE todos (_id INTEGER PRIMARY KEY, todo TEXT, status INTEGER, created_at INTEGER);");
}

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    Log.e(getClass().getSimpleName(), "onUpgrade: this is  not required.");
}


我更改了冗长的串联String CEATE_TABLE_TODO,因为它更易于阅读。我还更改了列,以便它们包含文本和数字的混合。我也将onUpgrade()方法换成一条简单的错误消息,因为在测试期间我们不应该使用onUpgrade(),因为只有在升级已经发布的应用程序时才需要使用ListCursorAdapter

我对String进行了一些小的更改,以使信息显示出一些有用的信息-在这种情况下,位于cursor.getString(1)(第一列)的MainActivity

public class ListCursorAdapter extends CursorAdapter {

LayoutInflater inflater;

public ListCursorAdapter(Context context, Cursor cursor) {
    super(context, cursor, 0);
    inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}

@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
    return inflater.inflate(R.layout.list_item, parent, false);
}

@Override
public void bindView(View view, Context context, Cursor cursor) {
    TextView todo = (TextView) view.findViewById(R.id.todoText);
    String todoTextDB = cursor.getString(1);
    todo.setText(todoTextDB);
}
}


DatabaseHelper中,您的context需要一个this参数,我可以使用DatabaseHelper来实现。 (如果回顾DatabaseHelper中的构造函数,您会看到以下内容:

public DatabaseHelper(Context context) {
        super(context, DATABASE_NAME, null, DATABASE_VERSION);
    }


除此之外,我所做的唯一主要更改是将query MainActivity移到了runCursor(),我将其放入了名为ListView的方法中,以便每次添加新项时可以更新addItem()AsyncTask

public class MainActivity extends ActionBarActivity {

DatabaseHelper db;
ListView lv;
ListCursorAdapter adapter;
Cursor allRows;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    db = new DatabaseHelper(this);

    lv = (ListView) findViewById(R.id.list);
    adapter = new ListCursorAdapter(this, runCursor());
    lv.setAdapter(adapter);
}

@Override
public void onDestroy(){
    if (allRows != null) {
        allRows.close();
    }
    adapter.getCursor().close();
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    int id = item.getItemId();
    if (id == R.id.action_settings) {
        return true;
    }

    if(id == R.id.addItem)
    {
        addItem();
    }

    return super.onOptionsItemSelected(item);
}

public void addItem()
{
   db.addRecord();
    adapter.changeCursor(runCursor());
}

Cursor runCursor() {
    Cursor allRows = null;
    allRows = db.getReadableDatabase().query(DatabaseHelper.TABLE_TODO,
            new String[] {DatabaseHelper.KEY_ID, DatabaseHelper.KEY_TODO},
            null, null, null, null, null);
    return allRows;
    }
}


我还应该提到,我通过重写onDestroy()显式关闭了所有游标对象,因为它们很容易发生内存泄漏。我在这里还没有做的最后一句话是,最好将任何游标query()移至后台线程,例如Cursor。我建议在Android Developer page上的上有更多信息!希望这是有用的!

10-08 13:17