onActivityResult传值的使用
有时候在群里加入的新人总会喜欢问一些过去的问题 有时候不想回答 是因为回答的次数多了
不回答又打击人的积极性 谁让自己接触的早呢 为了省劲还是把简单的东西作为指导篇吧
多个activity之间的传值 其实就是onActivityResult,然后别忘了还有一个action的问题 就是在主xml中添加自己的action以便于识别,最后次activity别忘了finansh。
Java代码
- public class Wizard extends Activity {
- private TextView step1result, step2result, step3result;
- public static final String INTENT_STEP1 = "com.novoda.STEP1";
- public static final String INTENT_STEP2 = "com.novoda.STEP2";
- public static final String INTENT_STEP3 = "com.novoda.STEP3";
- private static final int STEP1 = 1;
- private static final int STEP2 = 2;
- private static final int STEP3 = 3;
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.wizard);
- this.step1result = (TextView)findViewById(R.id.step1result);
- this.step2result = (TextView)findViewById(R.id.step2result);
- this.step3result = (TextView)findViewById(R.id.step3result);
- startActivityForResult(new Intent(Wizard.INTENT_STEP1), STEP1);
- }
- protected void onActivityResult(int requestCode, int resultCode, Intent data) {
- switch (requestCode) {
- case STEP1:
- this.step1result.setText(data.getStringExtra("STEP1RESULT"));
- startActivityForResult(new Intent(Wizard.INTENT_STEP2), STEP2);
- break;
- case STEP2:
- this.step2result.setText(data.getStringExtra("STEP2RESULT"));
- startActivityForResult(new Intent(Wizard.INTENT_STEP3), STEP3);
- break;
- case STEP3:
- this.step3result.setText(data.getStringExtra("STEP3RESULT"));
- break;
- }
- }
- }
Java代码
- public class Step1 extends Activity {
-
@Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.step1);
- Button nextStep = (Button)findViewById(R.id.goto2);
- nextStep.setOnClickListener(new View.OnClickListener() {
- public void onClick(View v) {
- Intent it = new Intent();
- it.putExtra("STEP1RESULT", ((EditText)findViewById(R.id.step1value)).getText()
- .toString());
- setResult(Activity.RESULT_OK, it);
- finish();
- }
- });
- }
- }
后面的step2 step3都是一样的了
然后还有主xml
Java代码"@drawable/icon" android:label="@string/app_name">-
".Wizard" android:label="@string/app_name"> -
-
"android.intent.action.MAIN" /> -
"android.intent.category.LAUNCHER" /> -
".Step1" android:label="Step1"> -
-
"com.novoda.STEP1" /> -
"android.intent.category.DEFAULT" /> -
".Step2" android:label="Step2"> -
-
"com.novoda.STEP2" /> -
"android.intent.category.DEFAULT" /> -
".Step3" android:label="Step3"> -
-
"com.novoda.STEP3" /> -
"android.intent.category.DEFAULT" /> -
"7" />
- Wizard.rar (50.8 KB)
- 下载次数: 555
“onActivityResult传值的使用” 的相关文章
Android应用程序的权限列表
Android应用程序在使用很多功能的时候必须在Mainifest.xml中声明所需权限,否则无法运行。 下面是一个Mainifest.xml文件的例子: <?xml version="1.0" encoding="utf-8"?><manifest xmlns:android=…
android 按两次返回键退出
我们可以在很多应用中都能看到按两次返回键退出 , 其实这个功能实现很容易, 下面就是实现的代码 , 把它放到你的程序中你的程序就能按两次返回键退出啦 , 这个功能是为了避免误点而把程序退出了 ,给你的程序...…
Please ensure that adb is correctly located at……问题解决方案
遇到问题描述:运行android程序控制台输出 [2013-10-13 16:45:50 - ] The connection to adb is down, and a severe error has occured. [2…
Android 使用 adb命令 远程安装apk
./adb devices 列出所有设备…