Activity间的跳转和数据传递

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Activity间的跳转和数据传递相关的知识,希望对你有一定的参考价值。

	Button bt;
        EditText et;
	TextView tv;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		// TODO Auto-generated method stub
		super.onCreate(savedInstanceState);
		setContentView(R.layout.sendimpl);
		bt=(Button) findViewById(R.id.mybut);
		et=(EditText) findViewById(R.id.etqq);
		tv=(TextView) findViewById(R.id.tvdd);
		bt.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
				String valueString=et.getText().toString();
				Intent t=new Intent(SendImpl.this,ReviceImpl.class);
				t.putExtra("value", valueString);
				startActivityForResult(t, 1);
			}
		});
	}
	@Override
	protected void onActivityResult(int requestCode, int resultCode, Intent data) {
		if(resultCode==RESULT_OK){
			
			String valString=data.getStringExtra("val");
			tv.setText(valString);
			
		}else{
			tv.setText("取消操作");
		}
	}

  

	TextView tv;
	Button bu;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		// TODO Auto-generated method stub
		super.onCreate(savedInstanceState);
		setContentView(R.layout.recevie);
		tv=(TextView) findViewById(R.id.tvqq);
		bu=(Button) findViewById(R.id.retbut);
		Intent t=getIntent();
		String vaString=t.getStringExtra("value");
		tv.setText(vaString);
		
		bu.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
				getIntent().putExtra("val", "second reslut");
				setResult(RESULT_OK,getIntent());
				finish();
			}
		});
	}

  

以上是关于Activity间的跳转和数据传递的主要内容,如果未能解决你的问题,请参考以下文章

Android activity之间的跳转和数据传递

Activity之间的跳转和数据传输

老式Android中碎片Fragment之间的跳转和数据传递

Activity持有多个Fragment的跳转和回退实现方案

个人技术博客(α)

基于Intent实现Activity与Activity之间的数据传递,实现二个Activity的跳转功能