嗨,我是 java 和 android 的新手。
假设demo()
screenone 的函数将Textview
在同一屏幕上显示一些值(screenone)。
但我需要将结果值显示到下一个屏幕,即。(屏幕二)
public void demo(){
{
.....
.....
}
所以我已将这些行包含在
screenoneActivity.java
Intent nextScreen = new Intent(getApplicationContext(), SecondtwoActivity.class);
nextScreen.putExtra("","");
startActivity(nextScreen);
demo();
ScreentwoActivity.java
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main1);
TextView txtName = (TextView) findViewById(R.id.textView1);
Intent i = getIntent();
txtName.setText(name);
到目前为止我做了这些事情。我不知道如何将数据从demo()
函数传输到下一个屏幕。
谁能给我线索或想法来实现这一目标。
非常感谢!..