0

我正在尝试在我的 activity_main 页面上创建一个用户数据库,以便当用户登录应用程序时,它将引导他们进入下一个主要页面。这是当前的 ActivityMain.java 文件:

         package com.example.awesomefilebuilder;
import android.content.ContentValues;
import android.content.Intent;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
    public class MainActivity extends Base_Activity {

    public final static String EXTRA_MESSAGE = "com.example.awesomefilebuilder.MESSAGE";
    public final String TAG = "MainActivity";
    public final String edit_message ="Username";
    public static final String DATABASE_NAME = "data";
    public static final String TABLE_NAME = "comments_table";
    public static final String C_ID = "_id";
    public static final String NAME = "name";
    public static final String COMMENT = "comment";
    public static final String EMAIL = "email";
    public static final String TIME = "time";
    public static final String PASSWORD = "password";
    public static final int VERSION = 1;

    View view;
    SQLiteDatabase db;
    DbHelper dbhelper;


    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
    {

        DbHelper dbhelper = new DbHelper(getActivity());
        db = dbhelper.getWritableDatabase();
        view = inflater.inflate(R. layout.activity_main, container,false);


            ContentValues cv = new ContentValues();


        cv.put(DbHelper.NAME, NAME);
        cv.put(DbHelper.COMMENT, COMMENT);
        cv.put(DbHelper.EMAIL, EMAIL);
        cv.put(DbHelper.PASSWORD, PASSWORD);
        db.insert(DbHelper.TABLE_NAME, null, cv);


    Button query = (Button) view.findViewById(R.id.query);
    query.setOnClickListener(new OnClickListener()
    {

        public void onClick(View arg0)
        {
            String [] columns = {DbHelper.NAME, DbHelper.COMMENT, DbHelper.EMAIL};

            Cursor cursor = db.query(DbHelper.TABLE_NAME, null, null, null, null, null, null);
            cursor.moveToFirst();

                while(cursor.moveToNext())
                {
                    String name = cursor.getString(cursor.getColumnIndex(DbHelper.NAME));
                    String comment = cursor.getString(cursor.getColumnIndex(DbHelper.COMMENT));
                    String password = cursor.getString(cursor.getColumnIndex(DbHelper.PASSWORD));
                    String email = cursor.getString(cursor.getColumnIndex(DbHelper.EMAIL));

                    Toast.makeText(getActivity(), "Name = "+ name +"/nComment= "+ comment,Toast.LENGTH_SHORT).show();
                }

                cursor.close();




        }

    });
        return view;


    }


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Log.i(TAG, "onCreate" );

}

@Override
public void onDestroy() {
    super.onDestroy();  // Always call the superclass

    // Stop method tracing that the activity started during onCreate()
    android.os.Debug.stopMethodTracing();
}


/** Called when the user clicks the Send button */
public void sendMessage(View view) {
    Intent intent = new Intent(this, HomePageMain.class);
    EditText editText = (EditText) findViewById(R.id.createpicture);
    String message = editText.getText().toString();
    intent.putExtra(EXTRA_MESSAGE, message);
    startActivity(intent);
    Log.i(TAG, "sendMessage" );
    }

}

我在网站上阅读并了解 getActivity() 选项只能用于片段,但是我不想将片段用于简单的用户登录屏幕。我可以做些什么来替换 getActivity() 选项,或者只是一般地修复错误?此外,我不想连接到一个单独的数据库,即使当我可以在我的应用程序中创建数据库时,我已经有一个可以随时使用的数据库,我已经这样做了。如果有人需要查看任何额外的编码页面,这将使这个问题更容易解决,请告诉我。提前致谢!:)

4

2 回答 2

1

这应该可以解决问题。这是关于getApplication()、getApplicationContext()、getBaseContext() 和 someClass.this的非常好的答案

DbHelper dbhelper = new DbHelper(getApplicationContext());
于 2013-08-24T02:37:21.917 回答
0

you cannot use getActivity() in Activity class because this method is of Fragment class. in your case you can do something like :

DbHelper dbhelper = new DbHelper(this);

or

DbHelper dbhelper = new DbHelper(MainActivity.this);

or

DbHelper dbhelper = new DbHelper(getApplicationContext());

NOTE: Code you pasted here is syntactically wrong because onCreateView() is not a method of Activity class , it is a method of Fragment class. You should write your code in onCreate() method which you written in onCreateView() method.strong text

于 2013-08-24T04:23:23.220 回答