如何在android中将数据从一个活动传输到另一个活动

时间:2013-11-24 01:21:24

标签: java android

这可能听起来很简单,但我无法使其正常工作。我有两个活动。第一个是表单,第二个是根据第一个活动中输入的值显示JSON文件中的数据。

所以我试图制作一个简单的版本。我有一个EditText和一个按钮,所以当他们按下按钮时,EditText中的任何内容都将出现在下一个活动的TextView中。

到目前为止,这是我的代码: 主要活动

static TextView textView;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    textView = (TextView) findViewById(R.id.editText1);
}

@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 transferIT(View view){
    Intent intent = new Intent(this, Page.class);
    startActivity(intent);
}

public static String getText(){
    String data = (String) textView.getText();
    return data;
}

主XML

<EditText
    android:id="@+id/editText1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignTop="@+id/textView1"
    android:layout_centerHorizontal="true"
    android:ems="10"
    android:hint="Enter Text to transfer" />

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="Transfer it"
    android:onClick="transferIT" />

第二项活动

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_page);
    // Show the Up button in the action bar.
    setupActionBar();


    TextView enteredValue = (TextView)findViewById(R.id.text);

    enteredValue.setText(MainActivity.getText());

}

第二个XML

<TextView
    android:id="@+id/text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="58dp" />

通过这种方式,我为EditText的数据创建了一个方法,并在其他活动中调用它来访问它。目前,当我按下按钮时,它停止工作。那么,在其他活动中使用表单数据的解决方案是什么?

6 个答案:

答案 0 :(得分:15)

在第一个活动中,你应该为这样的意图添加额外的参数:

// I assume Page.class is your second ativity
Intent intent = new Intent(this, Page.class); 
intent.putExtra("arg", getText()); // getText() SHOULD NOT be static!!!
startActivity(intent);

然后在第二个活动中你会反复这样的论点:

String passedArg = getIntent().getExtras().getString("arg");
enteredValue.setText(passedArg);

将MainActivity中的“arg”字符串存储为常量并始终在其他位置引用它也很好。

public static final String ARG_FROM_MAIN = "arg";

答案 1 :(得分:3)

您需要更改

 static TextView textView;
 textView = (TextView) findViewById(R.id.editText1);

 EditText ed1; 
 ed1 = (EditText) findViewById(R.id.editText1);

因为你有

<EditText
android:id="@+id/editText1" // it is edittext not textview

然后

public void transferIT(View view){
String value = ed1.getText().toString()
Intent intent = new Intent(this, Page.class);
intent.putExtra("key",value);
startActivity(intent);
}

然后在onCreate of second activity

String value = getIntent().getExtras().getString("key");

答案 2 :(得分:2)

当您调用第二个活动时,您会在意图中发送数据。这是非常基本的东西。我建议您阅读Android中的Intents和Parcelable概念以及Java中与您的问题相关的序列化。

答案 3 :(得分:1)

我们将数据从一个活动发送到另一个活动,其中第一个活动是mainActivity,另一个活动是otherActivity for mainActivity

       `Intent in = new Intent(this, OtherActivity.class);
        in.putExtra("name", etname.getText().toString());
        in.putExtra("job", etjob.getText().toString());
        in.putExtra("sal", etsal.getText().toString());    
        startActivity(in);`

for otherActivity

   `Intent in = getIntent();
    tv.setText(in.getStringExtra("name")+"\n"+in.getStringExtra("job")+" "+in.getStringExtra("sal"));

`

答案 4 :(得分:0)

我们正在将数据从MainActivity发送到另一个Activity

将数据发送到另一个活动的MainActivity代码

public class MainActivity extends AppCompatActivity
{
    EditText t1, t2, t3;
    Button button;

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        t1 = (EditText) findViewById(R.id.edit1);
        t2 = (EditText) findViewById(R.id.edit2);
        t3 = (EditText) findViewById(R.id.edit3);
        button = (Button) findViewById(R.id.move);

        button.setOnClickListener(new View.OnClickListener()
        {
            @Override

            public void onClick(View v)
            {
                String name = t1.getText().toString();
                String email = t2.getText().toString();
                String edu = t3.getText().toString();
                if (name.equals("") || email.equals("") || edu.equals(""))
                {
                    Toast.makeText(getApplicationContext(), "Fill the form", Toast.LENGTH_LONG).show();
                }
                else
                {
                    Intent intent = new Intent(MainActivity.this, Main2Activity.class);
                    intent.putExtra("fname", name);
                    /*putExtra method take two parameter,first is key  and second is value. By using key, we retrieve data
                     */

                    intent.putExtra("femail", email);
                    intent.putExtra("fedu", edu);
                    startActivity(intent);
                    finish();
                }
            }
        });
    }
}

接收名称为Main2Activity.java

的活动代码
public class Main2Activity extends AppCompatActivity
{
    TextView textView1, textView2, textView3;

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main2);
        textView1 = (TextView) findViewById(R.id.textView1);
        textView2 = (TextView) findViewById(R.id.textView2);
        textView3 = (TextView) findViewById(R.id.textView3);

        //We create  object of Bundle class that help to get data from MainActivity and used its  getString method

        Bundle bn = getIntent().getExtras();
        String name = bn.getString("fname");
        String email = bn.getString("femail");
        String edu = bn.getString("fedu");
        textView1.setText(String.valueOf(name));
        textView2.setText(String.valueOf(email));
        textView3.setText(String.valueOf(edu));
    }
}

答案 5 :(得分:0)

我们可以使用以下可能的方法来实现这一点,

  1. SharedPrefrence
  2. 实例(getter,setter方法)
  3. 恒定方法

1。 SharedPrefrence

    public static final String MyPREFERENCES = "MyPrefs"; 

    // set the sharedprefrence
    SharedPreferences sharedpreferences = getActivity().getSharedPreferences(MyPREFERENCES, Context.MODE_PRIVATE);
    SharedPreferences.Editor editor = sharedpreferences.edit();
    editor.putString("MasterAgilData", RestoreMasterData);
    editor.commit();

    // restore the sharedprefrence
    String RestoreMasterData1 = sharedpreferences.getString("MasterAgilData", "");

2。实例

public class instance {

public static AgilDataList StoreAgilDataList;

public static AgilDataList getStoremasterDataList() {
    return StoreAgilDataList;
}

public static void setStoremasterDataList(AgilDataList storemasterDataList) 
{
    StoreAgilDataList = storemasterDataList;
}
}

3。常量方法(静态变量)

public class First_Activity extends Activity {
 public static String USER_FORMATED_NUMBER = null;

 USER_FORMATED_NUMBER="Data you want to pass"; 
}

public class Second_Activity extends Activity {
 String data=First_Activity.USER_FORMATED_NUMBER; 
}