1

したがって、ボタンをクリックするたびに NullPointerException が発生します。なんらかの理由で、switch ステートメントを実行すると、エラーが発生します。私の DB ヘルパー クラスは単にカーソルを返すだけなので、特定のアクティビティでその Cursor を使用しています。ユーザーの好みに応じて、DB エントリを前後に切り替えられるようにしたいだけです。また、行全体ではなく、行のさまざまな要素を表示したいと考えています。任意の提案をいただければ幸いです。この方法で必要なものが提供されると思いましたが、機能しません。

import android.app.Activity;
import android.database.Cursor;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

public class SQLView extends Activity implements OnClickListener{

    /* these 3 variables are the same as in the Database class */
    public static final String KEY_ROWID = "_id";
    public static final String KEY_FRONT = "card_front";
    public static final String KEY_BACK = "card_back";

    /* variables are made global so we can use them in all of our functions here */
    private Cursor myCursor;
    private TextView tv;
    private int iRow;
    private int iFront;
    private int iBack;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.sqlview);

        TextView tv = (TextView)findViewById(R.id.tvSQLinfo);
        String result = null;
        Flashcards info = new Flashcards(this);
        info.open();


        myCursor = info.getCursor();
        //info.close();

        iRow = myCursor.getColumnIndex(KEY_ROWID);
        iFront = myCursor.getColumnIndex(KEY_FRONT);
        iBack = myCursor.getColumnIndex(KEY_BACK);

        Button front = (Button) findViewById(R.id.front);
        Button back = (Button) findViewById(R.id.back);
        Button next = (Button) findViewById(R.id.next);
        Button prev = (Button) findViewById(R.id.prev);

        front.setOnClickListener(this);
        back.setOnClickListener(this);
        next.setOnClickListener(this);
        prev.setOnClickListener(this);


        myCursor.moveToFirst();
        //Set the TextView to be the first card in our database 
        tv.setText(myCursor.getString(iFront));
    }

    @Override
    public void onClick(View v) {

        /* check if we are at our last entry in the DB */
        if(myCursor.isAfterLast()){
            /* move our cursor back to the first entry */
            myCursor.moveToFirst();
        }

        // TODO Auto-generated method stub
        switch (v.getId()){
            case R.id.front:
                tv.setText(myCursor.getString(iFront));
                break;

            case R.id.back:
                tv.setText(myCursor.getString(iBack));
                break;

            case R.id.next:
                if(myCursor.moveToNext()){
                    tv.setText(myCursor.getString(iFront));
                }else{
                    myCursor.moveToFirst();
                }
                break;

            case R.id.prev:
                myCursor.moveToPrevious();
                tv.setText(myCursor.getString(iFront));
                break;
        }
    }
}
4

1 に答える 1

2

tvinのローカル変数は、onCreate実際には同じ名前のクラス メンバー変数に割り当てられず、NPEステートメント内で になりswitchます。交換

TextView tv = (TextView)findViewById(R.id.tvSQLinfo);

tv = (TextView)findViewById(R.id.tvSQLinfo);
于 2013-01-03T01:01:50.607 に答える