gpt4 book ai didi

android - 将值导入另一个类

转载 作者:行者123 更新时间:2023-11-30 02:06:36 26 4
gpt4 key购买 nike

    btnRegister.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
String name = inputFullName.getText().toString();
String email = inputEmail.getText().toString();
String password = inputPassword.getText().toString();

if (!name.isEmpty() && !email.isEmpty() && !password.isEmpty()) {
registerUser(name, email, password);
} else {
Toast.makeText(getApplicationContext(),
"Please enter your details!", Toast.LENGTH_LONG)
.show();
}
return name; //<-here is the error
}

我想将“name”导入另一个类。我该怎么做?

最佳答案

我猜您想将值发送到另一个 Activity ,对吧?那么你应该使用 Intent 。

在您的 Activity 中:

Intent intent = new Intent();
intent.putExtra("name", name);
startActivity(intent);

在要获取值的activity中:

Bundle extras = getIntent().getExtras();
if (extras != null) {
String data = extras.getString("name");

关于android - 将值导入另一个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30590819/

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