gpt4 book ai didi

android - 无法将变量值分配给 extra.getString() 中的字符串;

转载 作者:行者123 更新时间:2023-11-29 15:50:50 25 4
gpt4 key购买 nike

android 新手,我目前正在尝试将 String 值从一个 Activity 发送到另一个。我浏览了几个线程,例如 How to use putExtra() and getExtra() for string data寻求答案,但我无法让它工作。

我要发送的字符串是:

public void golf(View view)  {
Intent intent = new Intent(SearchSport.this, EventList.class);
intent.putExtra("type", "golf");
startActivity(intent);

我的接收器看起来像

String type;

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

Intent intent = getIntent();
Bundle extras = intent.getExtras();
if ( extras != null)
type = extras.getString("type");

if (type == "golf"){
TextView eventName = (TextView) findViewById(R.id.EOName);
TextView eventTime = (TextView) findViewById(R.id.EOTime);
TextView eventLocation = (TextView) findViewById(R.id.EOLocation);

DatabaseOperations dop = new DatabaseOperations(ctx);
Cursor CR = dop.getInformation(1);
CR.moveToFirst();

eventName.setText(CR.getString(1));
eventTime.setText(CR.getString(7) + " " + CR.getString(8) + ". " + CR.getString(9) + " kl. " + CR.getString(10) + ":" + CR.getString(11));
eventLocation.setText(CR.getString(4));}

else {Toast toast = Toast.makeText(this, "Error in Type.", Toast.LENGTH_LONG);
toast.show();}

我不知道这里出了什么问题。每次我对其进行测试时,该应用程序都会显示 toast,而不是使用我的数据库条目中的数据填充 TextViews

编辑:代码已根据答案更改,但问题尚未解决。编写 if (type.equals("golf")){} 而不是 if (type == "golf"){} 会使应用崩溃。

编辑 2:问题解决了!修复大小写敏感问题,使用.equals代替==,并将receiver写成

if(getIntent().hasExtra("Type"))
type = getIntent().getStringExtra("Type");

最后,事实证明是我使用的虚拟设备导致应用程序崩溃,原因尚不清楚。在实际的 Android 手机上进行测试时,该应用程序按预期运行。

感谢大家的帮助!

最佳答案

试试这个

if(getIntent().hasExtra("Type"))
type = getIntent().getStringExtra("Type");

关于android - 无法将变量值分配给 extra.getString() 中的字符串;,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30124320/

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