我想知道如何从另一个活动中传递和读取一个活动中的字符串。我有两个活动。我将它们称为 Activity1 和 Activity2。我在 Activity1 中有一个名为course
. 我想在 Activity2 中读取该字符串。
我试过这样做,但字符串是空的。
public class Activity2 extends Activity1 {
我见过人们使用 Intent 功能,但我不知道如何使用它。
有什么建议么?谢谢!
我想知道如何从另一个活动中传递和读取一个活动中的字符串。我有两个活动。我将它们称为 Activity1 和 Activity2。我在 Activity1 中有一个名为course
. 我想在 Activity2 中读取该字符串。
我试过这样做,但字符串是空的。
public class Activity2 extends Activity1 {
我见过人们使用 Intent 功能,但我不知道如何使用它。
有什么建议么?谢谢!
使用意图传递值。
在你的第一个活动中
Intent i= new Intent("com.example.secondActivity");
i.putExtra("key",mystring);
// for explicit intents
// Intent i= new Intent(ActivityName.this,SecondActivity.class);
// parameter 1 is the key
// parameter 2 is the value
// your value
startActivity(i);
在您的第二个活动中检索它。
Bundle extras = getIntent().getExtras();
if (extras != null) {
String value = extras.getString("key");
//get the value based on the key
}
要传递自定义对象,您可以查看此链接
http://www.technotalkative.com/android-send-object-from-one-activity-to-another-activity/
你的第一个活动,Activity1
public class Activity1 extends Activity {
Button btn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity1);
btn=(Button) findViewById(R.id.payBtn);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
Intent intent=new Intent(Activity1.this,Activity2.class);
intent.putExtra("course", "courseValue");
startActivity(intent);
}
});
}
}
Activity2
public class Activity2 extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity2);
String course=getIntent().getExtras().getString("course").toString();
Log.d("course",course);
}
}
希望这会帮助你。
您走在正确的轨道上 - 您正在使用意图来启动第二个活动。您所要做的就是添加intent.putExtra("title", stringObject);
其中 stringObject 是您要传递的字符串,并且 title 是您要赋予该对象的名称。您可以使用该名称来引用第二个活动中传递的对象,如下所示:
String s = (String)getIntent().getExtras().getSerializable("title");
从 Activity 1 调用这样的东西:
Intent intent= new Intent("path.secondActivity");
intent.putExtra("keyString",sampleString);
startActiivty(intent);
在活动 2 中尝试这样的事情:
Bundle values = getIntent().getExtras();
if (values != null) {
String keyString = values.getString("keyString");
}
在你的 MainActivity
Intent i= new Intent(MainActivity.this,SecondActivity.class);
i.putExtra("key",yourstring);
startActiivty(i);
在你的第二个活动 onCreate()
Bundle extras = getIntent().getExtras();
if (extras != null) {
String value = extras.getString("key");
}
试试这个
公共类 Activity2 扩展了 Activity1