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.
我需要将我的 AndroidActivity与SQLite数据库连接。
Activity
SQLite
现在的问题是Classfor Activitywill extend(inherit) ActivityClass 和 for Database 我需要继承 ( extend) SQLiteOpenHelper,即需要同时扩展这两个类。
Class
extend
SQLiteOpenHelper
所以我该怎么做?
创建一个单独的扩展对象SQLiteOpenHelper。然后,您的活动可以将任何调用委托给该对象。但是,根本没有充分的理由Activity来处理这些电话。他们应该只是去帮助对象。