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
)
相关推荐
qq295329 分钟前
2026 财搭子决策模拟器:多智能体投研架构能力拆解
大数据·人工智能·架构
延凡科技5 小时前
延凡科技电力数字化平台技术解析:从电力交易到虚拟电厂的全链路架构实践
人工智能·科技·物联网·架构·虚拟电厂·电力平台
BerrySen1786 小时前
迈向 Next-Gen Java:企业级高并发架构演进与大模型 Agent 落地深度实战
java·开发语言·架构
丁小未7 小时前
Unity车机地图Tile流式渲染系统高性能架构方案
unity·架构·ecs·dots·车机系统·车机系统架构图
混凝土拌意大利面8 小时前
全球新型均衡经济治理体系:先进架构、发展历程预测、核心阻碍全解析
架构
&Hello Code9 小时前
2.一套可落地的 STM32 六层架构:基础工程框架搭建
stm32·嵌入式硬件·架构
红尘伴蝶舞9 小时前
H5游戏多进程隔离:如何解决Android内存激增与进程冻结问题
架构·app·android studio
BigGayGod9 小时前
IR + VM:让 LLM 生成的控制逻辑安全运行在超低端 MCU 上
架构
张忠琳9 小时前
【NVIDIA】NVIDIA k8s-device-plugin v0.19.3 资源管理器模块深度分析之三
云原生·容器·架构·kubernetes·nvidia
小小工匠10 小时前
Skill - 把无限画布装进 Codex:Cowart 的架构拆解与实践指南
架构·cowart