在 Android 上,变量没有通过 Intent 从一个类传递到另一个类

Posted

技术标签:

【中文标题】在 Android 上,变量没有通过 Intent 从一个类传递到另一个类【英文标题】:On Android, the variable is not being passed from one class to another class via Intent 【发布时间】:2021-11-09 22:43:25 【问题描述】:

在这个您可以复制并粘贴到 android Studio 中进行测试的简单代码中,有两个类。在称为 MainActivity 的第一个类中,有一个字段供用户键入名称。 在名为 MainActivity2 的第二个类中,有另一个字段显示用户在名为 MainActivity1 的第一个类中键入的内容。 但是,此代码显示错误,它无法识别 MainActivity2 中的变量“名称”,在此代码 sn-p 中:String receivedName = receiverBundle.getString("name");

请问有谁知道如何解决这个小错误?

拜托,您可以复制并粘贴这些简单的代码并在您的 Android Studio 中进行测试:

/*This code is the first Java class that there is a field where the user can write own name:*/
import androidx.appcompat.app.AppCompatActivity;

import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;

MainActivity1:

``` public class MainActivity extends AppCompatActivity 
    EditText name;
    Button button;

    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

      name  = findViewById(R.id.name);
      button = findViewById(R.id.button);

        String nameInString = name.getText().toString();

        button.setOnClickListener(new View.OnClickListener() 

            @Override
            public void onClick(View view) 
                Intent senderIntent = new Intent(getApplicationContext(), MainActivity2.class);
                Bundle senderBundle = new Bundle();
                senderBundle .putString("name", nameInString);
                startActivity(senderIntent);
            
        );

    
 
/* This class there is the field that must appear the name that the user wrote on the first class */
```
MainActivity2:
``` 
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;

import androidx.appcompat.app.AppCompatActivity;

public class MainActivity2 extends AppCompatActivity 

    TextView resultName;

    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main2);

        resultName = findViewById(R.id.nameReceived);

        Intent receiverIntent = getIntent();
        Bundle receiverBundle = receiverIntent.getExtras();
        String receivedName = receiverBundle.getString
                ("name");

        resultName.setText(receivedName);

    

/* Front-end code of MainActivity1*/
``` 
activity_main.xml
``` 
    <Button
        android:id="@+id/button"
        android:layout_
        android:layout_
        android:text="Send"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.498"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.645" />

    <TextView
        android:id="@+id/textView"
        android:layout_
        android:layout_
        android:text="Complete Name:"
        android:textSize="20dp"
        android:textStyle="bold"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.372"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.169" />

    <EditText
        android:id="@+id/name"
        android:layout_
        android:layout_
        android:ems="10"
        android:hint="Type your name"
        android:inputType="textPersonName"
        app:layout_constraintBottom_toTopOf="@+id/button"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.497"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.501" />

</androidx.constraintlayout.widget.ConstraintLayout>

/* MainActivity2的前端代码*/ Activity_main2.xml

    <TextView
        android:id="@+id/nameReceived"
        android:layout_
        android:layout_
        android:text="Received name:"
        android:textSize="25dp"
        android:textStyle="bold"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.476"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.307" />

</androidx.constraintlayout.widget.ConstraintLayout>``` 

【问题讨论】:

你能发布抛出的错误吗? 【参考方案1】:

nameInString 的初始化应该发生在 button.setOnClickListener 中!

    button.setOnClickListener(new View.OnClickListener() 

        @Override
        public void onClick(View view) 
            String nameInString = name.getText().toString();
            Intent senderIntent = new Intent(getApplicationContext(), MainActivity2.class);
            Bundle senderBundle = new Bundle();
            senderIntent.putExtra("name",nameInString);
            startActivity(senderIntent);
        
    );

MainActivity2.class

        Intent intent = getIntent();
        String username= intent.getStringExtra("name");

【讨论】:

完美!非常感谢:)【参考方案2】:

尝试删除捆绑包,然后得到如下内容:

Intent intent = getIntent();
String username= intent.getStringExtra("name");

【讨论】:

两个课程?还是只针对 MainActivity2.class? 在主要活动2中 没有再报错,但是MainActivity 1中写的名字并没有出现在MainActivity2中 请你测试一下吗?就是把这些代码复制粘贴到你的Android Studio上,测试写一个简单的名字,把写好的名字传给其他类,写出来的名字出现在MainActivity2.class上【参考方案3】:

使用它来将名称放入意图中:

senderIntent.putExtra("name",nameInString);

【讨论】:

在 MainActivity.class 上,甚至尝试:@Override public void onClick(View view) Intent senderIntent = new Intent(getApplicationContext(), MainActivity2.class); senderIntent.putExtra("name", nameInString); startActivity(senderIntent); 它不起作用。【参考方案4】:

在 Activity1 中获取 EditText 的当前文本,在 setOnClickListener 范围内获取 editText 的文本并将其设置为 nameInString :

    button.setOnClickListener(new View.OnClickListener() 

        @Override
        public void onClick(View view) 
            String nameInString = name.getText().toString();
            Intent senderIntent = new Intent(getApplicationContext(), MainActivity2.class);
            Bundle senderBundle = new Bundle();
            senderIntent.putExtra("name",nameInString);
            startActivity(senderIntent);
        
    );

在 Activity2 中:

Intent intent = getIntent();
String username= intent.getStringExtra("name");

【讨论】:

【参考方案5】:

我认为你面临两个问题:

    应用会崩溃 resultName 的值为空

关于1)和2),根本原因是您想使用bundle来承载数据,但是您没有将bundle放入Intent中。而在MainActivity2 中,您想使用bundle 直接获取数据。 http://prntscr.com/1sdwb9a

此外,正如其他人所说,intent 可以携带多种类型的值(也包含bundle),因此在您的情况下无需使用bundle

http://prntscr.com/1sdxv30

【讨论】:

请勿发布代码图片,只需将其复制并粘贴到您的答案中即可。

以上是关于在 Android 上,变量没有通过 Intent 从一个类传递到另一个类的主要内容,如果未能解决你的问题,请参考以下文章

Android:通过静态变量传递值会导致安全问题吗?

在Android 4.2+上使用intent安装apk时启用降级

在 Android 上通过 Intent 启动华为花瓣地图方向

Android kotlin 委托获取 intent 参数

没有找到处理 Intent 的活动:android.intent.action.EDIT

如何在 Android 上注册 ACTION_VIEW Intent?为啥我的 QApplication 没有收到 QEvent::FileOpen 事件?