18

我目前正在尝试获取通过 REST API 调用获取的数据,将其解析为我需要的信息,然后将该信息传递给新活动。我将来自 loopj.com 的异步 HTTP 客户端用于 REST 客户端,然后分别将以下代码用于我的onClick以及onCreate当前和未来的活动。

Eclipse 没有为我的任何代码传递任何错误,但是当我尝试在模拟器中运行时,当新的活动/视图打开时,我什么也得不到(即空白屏幕)。我尝试在我的 REST CLIENT 中使用不同的 URL 进行编码,但我仍然什么也看不到。我什至通过注释掉 try/catch inonClick并更改venueNametobundle.putString("VENUE_NAME", venueName);来取消 API 调用searchTerm。尽管如此,新视图仍然出现,但没有显示任何内容。什么没有通过,或者我忘记让第二个活动显示venueName什么?

public void onClick(View view) {
    Intent i = new Intent(this, ResultsView.class);
    EditText editText = (EditText) findViewById(R.id.edit_message);
    String searchTerm = editText.getText().toString();


    //call the getFactualResults method
    try {
        getFactualResults(searchTerm);
    } catch (JSONException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    //Create the bundle
    Bundle bundle = new Bundle();
    //Add your data from getFactualResults method to bundle
    bundle.putString("VENUE_NAME", venueName);  
    //Add the bundle to the intent
    i.putExtras(bundle);

    //Fire the second activity
    startActivity(i);
}

第二个活动中的方法应该接收意图并捆绑并显示它:

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    //Get the message from the intent
    //Intent intent = getIntent();
    //String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

    //Get the bundle
    Bundle bundle = getIntent().getExtras();

    //Extract the data…
    String venName = bundle.getString(MainActivity.VENUE_NAME);        

    //Create the text view
    TextView textView = new TextView(this);
    textView.setTextSize(40);
    textView.setText(venName);

    //set the text view as the activity layout
    setContentView(textView);

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        getActionBar().setDisplayHomeAsUpEnabled(true);
    }
}

谢谢你的帮助。非常感谢。

4

7 回答 7

28

您可以通过两种方式发送数据。这就是您目前发送它的方式。它没有任何问题。

//Create the bundle
Bundle bundle = new Bundle();
//Add your data from getFactualResults method to bundle
bundle.putString("VENUE_NAME", venueName);
//Add the bundle to the intent
i.putExtras(bundle);
startActivity(i);

但是,在您的代码(第二个活动)中,您指的key是 Bundle 中的,MainActivity.VENUE_NAME但代码中没有任何内容表明您有一个类,该类将值作为key与 Bundle 一起发送的实际名称返回。将第二个 Activity 中的代码更改为:

Bundle bundle = getIntent().getExtras();

//Extract the data…
String venName = bundle.getString("VENUE_NAME");        

//Create the text view
TextView textView = new TextView(this);
textView.setTextSize(40);
textView.setText(venName);

如果 Bundle 包含使用 this 的密钥,您可以签入您的第二个 Activity,并且您将知道keyBundle 中不存在 。但是,上面的更正将使它为您工作。

if (bundle.containsKey(MainActivity.VENUE_NAME))    {
    ....
}
于 2013-03-16T03:31:40.323 回答
5

我想如果你更换

String venName = bundle.getString(MainActivity.VENUE_NAME); 

String venName = bundle.getString("VENUE_NAME");

它应该工作。

以下是我如何处理从一项活动到另一项活动的数据传输:

将数据发送到名为“Projectviewoptions”的活动:

Bundle b = new Bundle();
          b.putString("id", str_projectid);
          Projectviewoptions pv = new Projectviewoptions();

接收数据:

idbundle = getArguments();
String myid = idbundle.getString("id");

两边的“钥匙”应该是一样的;在这种情况下,“id”。

通过意图发送数据的另一种方式是:

发送:

Intent intent = new Intent(getActivity(),ViewProjectDetails.class);
                            intent.putExtra("id", myid);
                            startActivity(intent);

收到:

String id = getIntent().getExtras().getString("id");
于 2013-03-16T05:35:50.377 回答
4

您错误地访问了您在捆绑包中添加的密钥。除了获取字符串之外,MainActivity.VENUE_NAME尝试直接传递您在捆绑包中添加的键名,如下所示:

除了得到如下字符串:

   //Get the bundle
     Bundle bundle = getIntent().getExtras();
    //Extract the data…
   String venName = bundle.getString(MainActivity.VENUE_NAME);        

尝试使用键名获取字符串,如下所示:

    /Get the bundle
     Bundle bundle = getIntent().getExtras();
    //Extract the data…
   String venName = bundle.getString("VENUE_NAME");  
于 2013-03-16T03:42:16.660 回答
1

发送捆绑包。

Bundle bundle = new Bundle();
bundle.putString("Name",Object); //This is for a String
i.setClass(CurrentClass.this, Class.class);
i.putExtras(bundle);
startActivity(i);

接收捆绑

Bundle bundle = null;
bundle = this.getIntent().getExtras();
String myString = bundle.getString("Name");//this is for String  
于 2013-03-16T03:31:08.553 回答
0

确保您用作将项目放入 Bundle 的密钥的字符串与用于提取它的密钥相同。在您的情况下,可能MainActivity.VENUE_NAME与“VENUE_NAME”不同

于 2013-03-16T03:21:34.873 回答
0
Intent loginIntent = new Intent(LoginActivity.this, HomeActivity.class);

Bundle bundle = new Bundle(); 


bundle.putString("user_id", userId);

i.putExtras(bundle);

startActivity(loginIntent);

LoginActivity.this.finish();
于 2017-03-23T06:03:12.767 回答
0
package com.example.mytest;

import androidx.annotation.MainThread;
import androidx.annotation.Nullable;
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;
import android.widget.Toast;

import static com.example.mytest.MainActivity.STATIC_VARIABLE;

public class MainActivity2 extends AppCompatActivity {
   EditText editText1;
    Button button1;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main2);
        editText1 = (EditText) findViewById(R.id.editText1);
        button1 = (Button) findViewById(R.id.button1);
        Bundle extras=null;
         extras=this.getIntent().getExtras();
        if(extras!=null) {
          String recieved =extras.getString("TAG");
          editText1.setText(String.valueOf(recieved));
        }
        button1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
  Intent backIntent = new Intent(MainActivity2.this, MainActivity.class);
                String input= editText1.getText().toString();
                backIntent.putExtra("TAG2",input);
               STATIC_VARIABLE=3;
//    setResult(RESULT_OK,intent);
//                startActivityForResult(intent, 2);
                startActivity(backIntent);


            }
        });
    }


    }
于 2021-01-29T11:39:12.733 回答