gpt4 book ai didi

android - 如何在 Kotlin [Dagger-Hilt] 中创建和使用房间数据库

转载 作者:行者123 更新时间:2023-12-02 13:06:58 27 4
gpt4 key购买 nike

这是一个自我回答的问题,因为我在我的项目中遇到了代表曝光问题,但在经过几个小时的研究后最终解决了这个问题。我没有保持沉默,而是认为这可能会在 future 帮助某人。本教程演示了如何创建 Room 数据库并在 Activity/fragment 中使用它。此处给出的示例用例是查询数据库的大小并更新 fragment 中的 View 。
注意:下面的代码中有一些 Dagger-Hilt 依赖注入(inject),但如果您手动执行自己的依赖注入(inject),则应该应用相同的方法。我也希望你对 MVVM 架构有一些基本的了解。如果您对涉及 LiveData 的其他方法感兴趣,您可以在这里找到有用的 Java 相关问题:resource 1 , resource 2 ;然而,重点是 Kotlin,这个解决方案不需要 LiveData。

最佳答案

您必须将项目中的 kotlin 文件关联起来,因为项目的包是结构化的,但导入应该保持不变。在这种情况下,我使用 Dagger-Hilt 进行依赖注入(inject)以避免样板代码。
ItemsYouAreStoringInDB.kt

import androidx.room.Entity
import androidx.room.PrimaryKey

@Entity(tableName = "items")
data class ItemsYouAreStoringInDB(/*Parameter of Item entry*/) {
@PrimaryKey(autoGenerate = true)
var id: Int? = null
}
YourDao.kt
import androidx.room.*
@Dao
interface YourDAO {
// Other insertion/deletion/query operations

@Query("SELECT count(id) FROM items") // items is the table in the @Entity tag of ItemsYouAreStoringInDB.kt, id is a primary key which ensures each entry in DB is unique
suspend fun numberOfItemsInDB() : Int // suspend keyword to run in coroutine
}
你的数据库.kt
import androidx.room.Database
import androidx.room.RoomDatabase

@Database(
entities = [ItemsYouAreStoringInDB::class], // Tell the database the entries will hold data of this type
version = 1
)

abstract class YourDatabase : RoomDatabase() {

abstract fun getYourDao(): YourDAO
}
使用 Dagger-Hilt 进行依赖注入(inject),可以创建 YourRepository,因为 Dagger-Hilt 在后台通过 YourDatabase 的抽象乐趣 getYourDao() 提供 notificationDao
YourRepository.kt
import path.to.ItemsYouAreStoringInDB
import path.to.YourDAO
import javax.inject.Inject // Dagger-Hilt to allow @Inject constructor

class YourRepository @Inject constructor(
private val yourDAO: YourDAO
){
// Other functions from YourDao.kt

suspend fun numberOfItemsInDB() = yourDAO.numberOfItemsInDB()
}
这不是关于如何使用 Dagger-Hilt 的演示,但需要以下两个文件:
应用模块.kt
import android.content.Context
import androidx.room.Room
import dagger.Module
import dagger.Provides
import dagger.hilt.InstallIn
import dagger.hilt.components.SingletonComponent
import dagger.hilt.android.qualifiers.ApplicationContext
import path.to.YourDatabase

import javax.inject.Singleton


@Module
@InstallIn(SingletonComponent::class)
object AppModule {

@Singleton // Tell Dagger-Hilt to create a singleton accessible everywhere in ApplicationCompenent (i.e. everywhere in the application)
@Provides
fun provideYourDatabase(
@ApplicationContext app: Context
) = Room.databaseBuilder(
app,
YourDatabase::class.java,
"your_db_name"
).build() // The reason we can construct a database for the repo

@Singleton
@Provides
fun provideYourDao(db: YourDatabase) = db.getYourDao() // The reason we can implement a Dao for the database
BaseApplication.kt
import android.app.Application
import dagger.hilt.android.HiltAndroidApp

@HiltAndroidApp
class BaseApplication : Application() {}
您还需要更新 AndroidManifest 文件并选择 BaseApplication 作为应用程序入口点 <application android:name="path.to.BaseApplication" ...允许 Android 利用 Dagger-Hilt。
继续...
YourViewModel.kt
import dagger.hilt.android.lifecycle.HiltViewModel
import androidx.lifecycle.ViewModel
import path.to.YourRepository

@HiltViewModel
class MainViewModel @Inject constructor(
private val repository: YourRepository
): ViewModel() {
suspend fun databaseSize() : Int {
return repository.numberOfItemsInDB()
}
}
现在您的 View 模型可以创建并且可以在整个应用程序中作为单例访问(不能存在两个实例),您可以在 fragment/Activity 中使用它。 viewmodel 可以访问存储库,该存储库可以通过查询 Room 数据库来接收信息。这是一个如何在 fragment 中使用它的示例:
YourFragment.kt
@AndroidEntryPoint // Dagger-Hilt requirement
class YourFragment : Fragment(R.layout.fragment_yourFragmentName) {
private val viewModel: MainViewModel by viewModels()
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
setViewsBasedOnRepo() // You might want to call this in onResume()
}

private fun setViewsBasedOnRepo() {
GlobalScope.launch(Dispatchers.Main) { // Dispatchers.Main because only the Main thread can touch UI elements. Otherwise you may wish to use Dispatchers.IO instead!
val size =
withContext(Dispatchers.Default) { viewModel.databaseSize() }
if (size == 0) { // Do stuff based on an empty database
btnAddItemsToDB.visibility = View.VISIBLE
textViewWarnNoItemsInDB.visibility = View.VISIBLE
recyclerViewItems.visibility = View.INVISIBLE
} else { // Do other stuff when database has entries of type ItemsYouAreStoringInDB
btnAddItemsToDB.visibility = View.INVISIBLE
textViewWarnNoItemsInDB.visibility = View.INVISIBLE
rvNotifications.visibility = View.VISIBLE
}
}
}
}

关于android - 如何在 Kotlin [Dagger-Hilt] 中创建和使用房间数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63146318/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com