有人可以告诉我确切地使用getExtra()
和putExtra()
意图吗?实际上,我有一个字符串变量,例如str,它存储了一些字符串数据。现在,我想将此数据从一个活动发送到另一个活动。
Intent i = new Intent(FirstScreen.this, SecondScreen.class);
String keyIdentifer = null;
i.putExtra(strName, keyIdentifer );
然后在SecondScreen.java中
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.table);
TextView userName = (TextView)findViewById(R.id.userName);
Bundle bundle = getIntent().getExtras();
if(bundle.getString("strName")!= null)
{
//TODO here get the string stored in the string variable and do
// setText() on userName
}
}
我知道这是一个非常基本的问题,但不幸的是我被困在这里。请帮忙。
谢谢,
编辑:在这里,我尝试从一个屏幕传递到另一个屏幕的字符串是动态的。那就是我有一个editText,无论用户键入什么,我都会在其中获取字符串。然后在的帮助下myEditText.getText().toString()
。我将输入的值作为字符串获取,然后必须传递此数据。