我想在每次安装时只在应用程序中设置一次用户名。我们不必担心用户是否清除数据。
我该如何做到这一点?
您可以使用SharedPreferences或创建数据库或在服务器上存储用户信息
private val shared: SharedPreferences = context.applicationContext.getSharedPreferences(
"Check_Token_User",
Context.MODE_PRIVATE
)
fun saveToken(token: String?) {
val editor = shared.edit()
editor.putString("Token", token)
editor.apply()
}