我是android的新手,我正在尝试将用户输入的数据(他们的名字)发送到另一个活动。我过去能够使用Intents在活动之间发送单行,但是我还没有弄清楚如何将两个不同的字符串发送到两个不同的TextView。
到目前为止,这是我的MainActivity代码:
package com.example.game;
import android.content.Intent;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.Button;
import android.widget.EditText;
import android.view.View;
import android.widget.AutoCompleteTextView;
public class MainActivity extends Activity {
public final static String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button = (Button)findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
sendNames();
sendNames2();
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
public void sendNames() {
//sends player1's name to mainGame
Intent intent = new Intent (this, MainGame.class);
EditText player1 = (EditText) findViewById(R.id.player1);
String message = player1.getText().toString();
intent.putExtra(EXTRA_MESSAGE, message);
startActivity(intent);
}//sends player2's name to mainGame
public void sendNames2(){
Intent intent2 = new Intent(this, MainGame.class);
EditText player2 = (EditText) findViewById(R.id.player2);
String message2 = player2.getText().toString();
intent2.putExtra(EXTRA_MESSAGE, message2);
startActivity(intent2);
}
}
我的第二项活动的代码,MainGame:
package com.example.game;
import android.content.Intent;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.annotation.SuppressLint;
import android.view.MenuItem;
import android.support.v4.app.NavUtils;
import android.annotation.TargetApi;
import android.os.Build;
import android.widget.TextView;
public class MainGame extends Activity {
@SuppressLint("NewAPI")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_game);
//retrives player1's name
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
TextView name1 = (TextView) findViewById(R.id.name1);
name1.setText(message);
//retrivews player2's name
Intent intent2 = getIntent();
String message2 = intent2.getStringExtra(MainActivity.EXTRA_MESSAGE);
TextView name2 = (TextView) findViewById(R.id.name2);
name2.setText(message2);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
getActionBar().setDisplayHomeAsUpEnabled(true);
}
}
return super.onOptionsItemSelected(item);
}
}
当我运行这个时,我会在两个TextView中获得“name2”的内容。我需要做些什么来改变这个?
答案 0 :(得分:3)
当我运行这个时,我得到了在TextView的
中为'name2'添加的内容
这是因为您正在使用第二个Activity
创建Intent
的新实例。有不同的方法可以做到这一点。一个是创建一个Intent
作为成员变量,在你的第一个函数调用中实例化它,添加额外的东西,然后在第二个方法中添加另一个额外的,并在那里调用startActivity
。
但是,同时完成这一切可能会更容易,也更具可读性。
public void sendNames() {
//sends player1's name to mainGame
Intent intent = new Intent (this, MainGame.class);
EditText player1 = (EditText) findViewById(R.id.player1);
String player1Name= player1.getText().toString();
intent.putExtra("player1Name", player1Name);
EditText player2 = (EditText) findViewById(R.id.player2);
String player2Name= player2.getText().toString();
intent2.putExtra("player2Name", player2Name);
startActivity(intent);
只需称之为一种方法。
然后点击
Intent intent = getIntent();
String name1 = intent.getStringExtra("player1Name");
TextView name1 = (TextView) findViewById(R.id.name1);
name1.setText(message);
String name1 = intent2.getStringExtra("player2Name");
TextView name2 = (TextView) findViewById(R.id.name2);
name2.setText(name1 ;
答案 1 :(得分:0)
Intent就像一个Map,您可以使用键存储String(和其他可序列化对象)。在您的代码中,您使用相同的密钥EXTRA_MESSAGE
两次。
另外,请记住,您使用一个Intent来启动一个Activity:您不能有2个Intent启动一个Activity的单个实例。解决方案是将2个值与2个不同的键放在一个Intent中。
答案 2 :(得分:0)
您可以使用intent向活动发送多个参数,您不必为此创建两个不同的意图。
您可以按照以下方式执行此操作
public void sendNames() {
Intent intent = new Intent (this, MainGame.class);
EditText player1 = (EditText) findViewById(R.id.player1);
EditText player2 = (EditText) findViewById(R.id.player2);
String message = player1.getText().toString();
String message2 = player2.getText().toString();
intent.putExtra(EXTRA_MESSAGE, message);
intent2.putExtra(EXTRA_MESSAGE1, message2);
startActivity(intent);
}
然后获取像
这样的值Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
String message2 = intent2.getStringExtra(MainActivity.EXTRA_MESSAGE1);
TextView name1 = (TextView) findViewById(R.id.name1);
name1.setText(message);
TextView name2 = (TextView) findViewById(R.id.name2);
name2.setText(message2);