Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.5k views
in Technique[技术] by (71.8m points)

android - SQLiteDatabase class cannot be resolved in coding IDE, how to set up it?

I am exploring the source code of an App. There is SQLiteDatabase used in the source code.

import android.database.Cursor;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;

import android.database.sqlite.SQLiteDatabase;


    public class MainActivity extends AppCompatActivity {
    
        private SQLiteDatabase db;
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }

    

I put the source code in my IntelliJ and Android Studio IDEs, but both of them cannot recognize this class. The import android.database.sqlite.SQLiteDatabase is also shown in grey color. I am totally new for writing Apps, is there anything to set up to use this class?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The name of the class is SQLiteDatabase not SQLiteDataBase with a capital B. Hence the other is flagged as unrecognized and the import as unused.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...