Android ViewModel 接收 Intent 参数

通常我们会将页面中的参数通过 ViewModel 来管理,上一页面 Intent 传过来的数据,应直接存入 ViewModel 中,防止 Activity 和 ViewModel 各存一份。

方法一: Factory(经典方式)

kotlin 复制代码
// MainActivity.kt
fun jump() {
   val intent = Intent(this, SecondActivity::class.java)
   intent.putExtra("userId", "tomcat")
   startActivity(intent)
}
kotlin 复制代码
// SecondActivity.kt
class SecondActivity : AppCompatActivity() {
    private val viewModel: SecondViewModel by viewModels {
        val userId = intent.getStringExtra("userId") ?: ""
        SecondViewModel.SecondViewModelFactory(userId)
    }

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_second)
        val textView: TextView = findViewById(R.id.tv_res)
        textView.text = viewModel.userId
    }
}

class SecondViewModel(
    val userId: String,
) : ViewModel() {

    init {
        Log.d("Debug", "userId: " + userId)
    }

    class SecondViewModelFactory(
        private val userId: String
    ) : ViewModelProvider.Factory {
        override fun <T : ViewModel> create(modelClass: Class<T>): T {
            if (modelClass.isAssignableFrom(SecondViewModel::class.java)) {
                return SecondViewModel(userId) as T
            }
            return super.create(modelClass)
        }
    }
}

Lifecycle 2.5+, AndroidX 更推荐使用 viewModelFactory {} 创建 viewModel Factory,

kotlin 复制代码
    private val viewModel: SecondViewModel by viewModels {
        val userId = intent.getStringExtra("userId") ?: ""
//        SecondViewModel.SecondViewModelFactory(userId)
        viewModelFactory {
            initializer {
                SecondViewModel(userId)
            }
        }
    }

方法二:SavedStateHandle(官方推荐)

如果参数来自导航或 Intent,可以使用 SavedStateHandle:参数还能在进程被系统回收后恢复

kotlin 复制代码
// SecondActivity.kt
class SecondActivity : AppCompatActivity() {
    val viewModel: SecondViewModel by viewModels()

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_second)
        val textView: TextView = findViewById(R.id.tv_res)
        textView.text = viewModel.userId
    }
}

class SecondViewModel(
    private val savedStateHandle: SavedStateHandle
) : ViewModel() {

    val userId = savedStateHandle["userId"] as? String
}

SavedStateHandle 为什么能拿到 Intent 中的数据?

对于使用 by viewModels() 创建的 ComponentActivity,默认的 ViewModel 工厂会把 Intent 的 extras(首次创建时)作为 SavedStateHandle 的默认值,因此可以直接通过相同的 key 获取。

方法三:ViewModel 除了 Intent 参数,还有 Repository、UseCase 等依赖

不能再使用默认的 by viewModels() 了。因为默认 Factory 只知道怎么创建 SavedStateHandle,但是不知道 usecase, repository 从哪里来。 因此必须自己实现 Factory。

kotlin 复制代码
class SecondActivity : AppCompatActivity() {
    private val viewModel: SecondViewModel by viewModels {
        viewModelFactory {
            initializer {
                SecondViewModel(
                    getUserIdUseCase = GetUserIdUseCase(),
                    savedStateHandle = createSavedStateHandle(),
                )
            }
        }
    }

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_second)
        val textView2: TextView = findViewById(R.id.tv_res)
        textView2.text =  "${viewModel.userId} - ${viewModel.userName}"
    }
}

class SecondViewModel(
    private val getUserIdUseCase: GetUserIdUseCase,
    savedStateHandle: SavedStateHandle
) : ViewModel() {
    val userId = savedStateHandle["userId"] as? String
    val userName = getUserIdUseCase()
}

class GetUserIdUseCase {
    operator fun invoke(): String {
        return "UseCase data"
    }
}

方法四: Koin 注入

kotlin 复制代码
// App.kt
class App : Application() {
    override fun onCreate() {
        super.onCreate()
        startKoin {
            modules(AppModule)
        }
    }
}

val AppModule = module {
    factoryOf<GetUserIdUseCase>(::GetUserIdUseCase)
    viewModel { params ->
        SecondViewModel(getUserIdUseCase = get(), savedStateHandle = get(), greet = params[0], greet2 = params[1])
    }
}
kotlin 复制代码
// SecondActivity.kt
class SecondActivity : AppCompatActivity() {
    /**
     *  viewModel(): Koin 提供的 ComponentActivity 的 扩展函数
     */
    private val viewModel: SecondViewModel by viewModel {
        parametersOf("hello", "English")
    }

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_second)
        val textView: TextView = findViewById(R.id.tv_res)
        textView.text = "${viewModel.userId} - ${viewModel.userName} - ${viewModel.greet} - ${viewModel.language}"
    }
}

class SecondViewModel(
    private val getUserIdUseCase: GetUserIdUseCase,
    private val savedStateHandle: SavedStateHandle,
    val greet: String,
    val language: String
) : ViewModel() {

    init {
        Log.d("Debug", "greet: ${greet}")
    }

    val userId = savedStateHandle["userId"] as? String
    val userName = getUserIdUseCase()
}

Koin 对于同类型参数,是按照构造器顺序消费 parametersOf() 中的值, 即:

kotlin 复制代码
parametersOf(
    "hello",
    "English"
)

对应

kotlin 复制代码
greet  = "hello"
language = "English"

如果写反了:

kotlin 复制代码
parametersOf(
    "English",
    "hello"
)

那么就是:

kotlin 复制代码
greet  = "English"
language = "hello"

Koin 不知道哪个 String 是 greet,哪个是 language,只能按顺序匹配, 可读性一般。 可以考虑将参数封装成一个数据类, 如下:

kotlin 复制代码
// SecondActivity.kt
class SecondActivity : AppCompatActivity() {
    /**
     *  viewModel(): Koin 提供的 ComponentActivity 的 扩展函数
     */
    private val viewModel: SecondViewModel by viewModel {
        parametersOf(Args(greet = "hello", language = "English"))
    }

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_second)
        val textView: TextView = findViewById(R.id.tv_res)
        textView.text = "${viewModel.userId} - ${viewModel.userName} - ${viewModel.args.language} - ${viewModel.args.greet}"
    }
}

class SecondViewModel(
    private val getUserIdUseCase: GetUserIdUseCase,
    private val savedStateHandle: SavedStateHandle,
     val args: Args,
//    val greet: String,
//    val language: String
) : ViewModel() {

    init {
        Log.d("Debug", "greet: ${args.greet}")
    }

    val userId = savedStateHandle["userId"] as? String
    val userName = getUserIdUseCase()
}

data class Args(
    val greet: String,
    val language: String
)
相关推荐
IT小白杨1 小时前
多店铺防关联指纹浏览器哪个好:从账号关联判定模型到环境隔离架构的一次拆解
经验分享·物联网·矩阵·架构·指纹浏览器
223糖1 小时前
思考 AI 应用架构
人工智能·架构
Dawson Zhu2 小时前
从理论到工程化:构建可靠Agent系统的六大核心工件与实战指南
人工智能·语言模型·架构·aigc·agi
她的男孩2 小时前
接口加密做成框架级能力有多难?我扒了 3600 行源码:从 RSA 握手到落库密文迁移
人工智能·后端·架构
老周聊架构2 小时前
Ontology:Palantir 架构真正的核心,不是数据库也不是知识图谱
数据库·架构·知识图谱
视频技术分享2 小时前
视频会议系统技术全解:底层架构、选型标准与实战优化
架构·音视频
国科安芯3 小时前
面向卫星测控应答机的抗辐射MCU信号采集与定时控制研究
单片机·嵌入式硬件·mcu·架构·卫星·商业航天·抗辐射
cnzen4 小时前
本地优先的笔记应用,数据到底怎么管?——SQLite + 空间隔离 + 内容寻址附件的工程拆解
架构
Brilliantwxx4 小时前
【STM32】 初认识USART串口
linux·stm32·单片机·嵌入式硬件·架构
PFFstronger7 小时前
从 0 到 1 搭建接口自动化测试框架:分层架构 + 数据驱动 + 接口依赖编排
python·架构·自动化