Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 android 应用程序中:如何在 SQLiteOpenHelper 的 onCreate 方法中访问 Context?
您扩展SQLiteOpenHelper并在自己的构造函数中,将其保存到字段中。然后,稍后,onCreate()您可以访问上下文。
SQLiteOpenHelper
onCreate()
您可以扩展该类并将上下文传递给构造函数,构造函数将其存储在变量中。然后,您可以从 onCreate 方法中访问它。