使用意图对象传递数据

作者:追风剑情 发布于:2015-8-5 21:18 分类:Android

视图activity_passing_data.xml

  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. tools:context="${relativePackage}.${activityClass}" >
  6.  
  7. <Button
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:text="Go to SecondActivity1"
  11. android:onClick="onClick" />
  12.  
  13. </RelativeLayout>

视图activity_second_activity1.xml

  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. tools:context="${relativePackage}.${activityClass}" >
  6.  
  7. <Button
  8. android:id="@+id/btn_SecondActivity1"
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:text="Return to PassingDataActivity"
  12. android:onClick="onClick" />
  13.  
  14. </RelativeLayout>

活动PassingDataActivity

  1. package com.example.androidtest;
  2.  
  3. import android.app.Activity;
  4. import android.content.Intent;
  5. import android.os.Bundle;
  6. import android.view.View;
  7. import android.widget.Toast;
  8.  
  9. public class PassingDataActivity extends Activity {
  10.  
  11. @Override
  12. protected void onCreate(Bundle savedInstanceState) {
  13. super.onCreate(savedInstanceState);
  14. setContentView(R.layout.activity_passing_data);
  15. }
  16. public void onClick(View view){
  17. Intent i = new Intent("com.example.androidtest.SecondActivity1");
  18. i.putExtra("str1", "string1");
  19. i.putExtra("age1", 25);
  20. Bundle extras = new Bundle();
  21. extras.putString("str2", "string2");
  22. extras.putInt("age2", 35);
  23. i.putExtras(extras);
  24. startActivityForResult(i, 1);
  25. }
  26. public void onActivityResult(int requestCode, int resultCode, Intent data)
  27. {
  28. if(requestCode == 1){
  29. if(resultCode == RESULT_OK){
  30. int age3 = data.getIntExtra("age3", 0);
  31. Toast.makeText(this, Integer.toString(age3), Toast.LENGTH_SHORT).show();
  32. String uri = data.getData().toString();
  33. Toast.makeText(this, uri, Toast.LENGTH_SHORT).show();
  34. }
  35. }
  36. }
  37. }

活动SecondActivity1

  1. package com.example.androidtest;
  2.  
  3. import android.app.Activity;
  4. import android.content.Intent;
  5. import android.net.Uri;
  6. import android.os.Bundle;
  7. import android.view.View;
  8. import android.widget.Toast;
  9.  
  10. public class SecondActivity1 extends Activity {
  11.  
  12. @Override
  13. protected void onCreate(Bundle savedInstanceState) {
  14. super.onCreate(savedInstanceState);
  15. setContentView(R.layout.activity_second_activity1);
  16. String str1 = getIntent().getStringExtra("str1");
  17. int age1 = getIntent().getIntExtra("age1", 0);
  18. Bundle bundle = getIntent().getExtras();
  19. String str2 = bundle.getString("str2");
  20. int age2 = bundle.getInt("age2");
  21. String passData = "str1="+str1+", age1="+age1+", str2="+str2+", age2="+age2;
  22. Toast.makeText(this, passData , Toast.LENGTH_SHORT).show();
  23. }
  24. /**
  25. * 返回到调用SecondActivity1的活动(即,PassingDataActivity),并回传数据。
  26. * @param view
  27. */
  28. public void onClick(View view){
  29. Intent i = new Intent();
  30. i.putExtra("age3", 45);
  31. i.setData(Uri.parse("Something passed back to PassingDataActivity"));
  32. setResult(RESULT_OK, i);
  33. finish();
  34. }
  35. }

运行效果

111111111.png


2222.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号