-1

嗨,我是 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()函数传输到下一个屏幕。

谁能给我线索或想法来实现这一目标。

非常感谢!..

4

4 回答 4

2

您需要向 putExtra 方法参数发送一些值,以便能够从中获得一些东西。

在您的第一个活动(A)中:

Intent i = new Intent(A.this, B.class);
i.putExtra("someName", variableThatYouNeedToPass);
startActivity(i);

在您的第二个活动(B)中:

Bundle extras = getIntent().getExtras();
int fetchedVariable = extras.getInt("someName");
于 2012-05-30T05:57:50.043 回答
1

在 ScreenoneActivity

Intent act2=new Intent(this,Activity2.class);
    act2.putExtra("A",a);
    startActivity(act2);

在 ScreentwoActivity 类中

Intent i = getIntent();
Bundle extras = getIntent().getExtras(); 
int a = extras.getInt("A");
txtName.setText(a);
于 2012-05-30T06:08:42.807 回答
1

在 demo() 函数中编写以下代码:

Intent nextScreen = new Intent(getApplicationContext(), SecondtwoActivity.class);
       nextScreen.putExtra("","");
       startActivity(nextScreen); 

nextScreen.putExtra("","");提供一些键和值,例如:

nextScreen.putExtra("name","ABC");

现在在 SecondActivity 中,编写:

@Override
protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

    setContentView(R.layout.main1);

    TextView txtName = (TextView) findViewById(R.id.textView1);

    Intent i = getIntent();
    Bundle bundle = i.getExtras();

    txtName.setText(bundle.getString("name"));
于 2012-05-30T05:59:42.740 回答
0

在 onCreate :

Bundle extras = getIntent().getExtras(); 
String value;

if (extras != null) 
{
    value= extras.getString("key");
}

https://stackoverflow.com/questions/10752501/how-can-we-go-to-next-page-in-android/10752516#10752516

谷歌这是非常基本的......

android使用意图....

沃格拉文章

在活动 1-

Intent i = new Intent(this, ActivityTwo.class);
i.putExtra("Value1", "This value one for ActivityTwo ");
i.putExtra("Value2", "This value two ActivityTwo");

startActivity(i);

在活动 2 中 - 在 onCreate 函数中

Bundle extras = getIntent().getExtras();

if (extras == null) {
        return;
        }
// Get data via the key
String value1 = extras.getString(Intent.EXTRA_TEXT);
if (value1 != null) {
    // Do something with the data
}
于 2012-05-30T05:57:23.437 回答