gpt4 book ai didi

java - getExtras() 返回 null

转载 作者:行者123 更新时间:2023-12-01 07:35:06 25 4
gpt4 key购买 nike

这是我的代码。

在我的主 .java 文件中。

public void showQuiz (View view){
Username = (EditText) findViewById(R.id.Username);
String userId = Username.getText().toString();
String deviceId = Secure.getString(this.getContentResolver(),
Secure.ANDROID_ID);
//this intent is used to open other activity wich contains another webView
Intent intent = new Intent(this, Quiz.class);

Bundle bun = new Bundle();
bun.putString("userid",userId);
bun.putString("deviceid", deviceId);

intent.putExtras(bun);
startActivity(intent);
}

这是 Activity 的 .java 文件中的内容。

package com.earn.egpt;

import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;

public class Quiz extends Activity {
private static final String url = "http://www.m.s-w-family.com/?subid=";
private static final String url2 = "&deid=";

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_quiz);
Bundle extras=getIntent().getExtras();
String userId=extras.getString("userId");
String deviceId=extras.getString("deviceId");
WebView webview;
webview = (WebView) findViewById(R.id.webView1);
webview.getSettings().setJavaScriptEnabled(true);
webview.loadUrl(url+userId+url2+deviceId);
}
}

由于某种原因,它将字符串作为空传递,但我不知道为什么。我对这种编程非常陌生,所以我什至不知道该在哪里。我查看了与我类似的其他问题并尝试了修复它们,但值仍然为空。

最佳答案

注意变量的大小写。您正在插入“userid”并检索“userId”。

关于java - getExtras() 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13095306/

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