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
)
相关推荐
一拳不是超人14 小时前
被 Tauri「体积小」种草后,我拿它做了个本地 AI 桌面工具,然后踩了这些坑
前端·架构
Dawson Zhu14 小时前
长链路Agent架构深度剖析:ReAct、Plan-and-Execute与托管式架构的选型博弈
架构·aigc
玫瑰互动GEO14 小时前
企业官网SEO优化技术架构:从服务器配置到爬虫友好的全链路实践
爬虫·架构
hz5678915 小时前
好视通视频会议解决方案:需求分析、平台架构与价值实现(2026 完整版)
架构·音视频·实时音视频·需求分析·信息与通信
Wang's Blog15 小时前
PostgreSQL笔记19:进程与内存架构精解
笔记·postgresql·架构
heimeiyingwang15 小时前
【架构实战】消息队列选型与异步架构设计:从Kafka到RabbitMQ,一次聊透
架构·kafka·rabbitmq
会周易的程序员1 天前
aiDgePLC iec61131 虚拟机 完整使用文档
c++·物联网·架构·st·iec61131
宇擎智脑科技1 天前
DeepSeek Harness 架构解析:MCP 和 Skill 如何被统一为 Cordis 插件
架构·deepseek·harness·dsh
这个DBA有点耶1 天前
分布式数据库到底该不该上?从判断标准到架构选型的实战思考
数据库·架构·dba
楚识科技1 天前
破除通用瓶颈——企业级OCR定制化开发的架构思维与实战范式
架构·ocr