I want to ask a question on Stack Overflow, but it keeps telling:
Oops! Your question couldn't be submitted because:
Your post appears to contain code that is not properly formatted as code. Please indent all code by 4 spaces using the code toolbar button or the CTRL+K keyboard shortcut. For more editing help, click the [?] toolbar icon.
I have checked in the editor that all my code is nicely indented with 4 spaces and I have no idea how to ask that question now.
Here is the question that wont show in SO :
I would like to know if there is any way of getting the activity result some other way than in the onActivityResult() method.
I have written a sample of what I would like to achieve. Button 1 and 2 Is how a normal android app would handle some activity result, and **is it possible to make button 3 from this example to work?**
This ConfirmActivity class would be called from lots of different places in the code, and handling all those calls in a single function would be really ugly. Getting a result like I showed with button 3 would make the code really clean. I really don't care how much work it goes to making that happen cause once it's done I can just hide that and be happy. I have been thinking of creating threads that would wait for that activity to end and continue work later, or something like that, but I haven't been able to find any way I could make that work.
If this can be done with a dialog it would be nice as well, I just used an activity here for the example to make it more clear.
Here is the whole code (sorry, if try to explain it with a few line, it seems just to confuse people)
package com.stack.overflow;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.LinearLayout;
public class StackquestionActivity extends Activity {
private static final int CONFIRM_ACTIVIY = 0;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
LinearLayout l = new LinearLayout(this);
Button b1 = new Button(this), b2 = new Button(this), b3 = new Button(this);
b1.setText("do thing 1");
b2.setText("something");
b3.setText("else");
l.addView(b1);
l.addView(b2);
l.addView(b3);
b1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
showConfirmActivity(1);
}
});
b2.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
showConfirmActivity(2);
}
});
b3.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
if (showConfirmActivity(3) == 1){ // i would like to continue here after the confirm activity ends
//give user what he wants
}else {
//say you are sorry and send him away
}
}
});
setContentView(l);
}
private int showConfirmActivity(int act){
Intent i = new Intent(this, ConfirmActivity.class);
i.putExtra("request_id", act);
startActivityForResult(i, CONFIRM_ACTIVIY);
return 0; // this is where i would like to have a result from the called activity
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == Activity.RESULT_OK && requestCode == CONFIRM_ACTIVIY) {
int request_id = data.getIntExtra("request_id", 0);
int ok = data.getIntExtra("ok", 0);
String response = data.getStringExtra("response");
Log.v("onActivityResult", "request_id = "+request_id);
Log.v("onActivityResult", " ok = "+ok );
Log.v("onActivityResult", " response = "+response);
switch (request_id) {
case 1: Log.v("onActivityResult", "continue code from button 1");
if (ok==1){
//give user what he wants
}else {
//say you are sorry and send him away
}
break;
case 2: Log.v("onActivityResult", "continue code from button 2");
if (ok==1){
//give user what he wants
}else {
//say you are sorry and send him away
}
break;
case 3: Log.v("onActivityResult", "continue code from button 3");
break;
}
}
}
}
ConfirmActivity would be some activity (like a popup or a dialog), for user to interact with confirm a few things.
here is a rar of the working example
<http://dl.dropbox.com/u/722768/stackquestion.rar>
and the individual files
<http://dl.dropbox.com/u/722768/AndroidManifest.xml>
<http://dl.dropbox.com/u/722768/StackquestionActivity.java>
<http://dl.dropbox.com/u/722768/ConfirmActivity.java>
Thank you for any pointers, and I know that is a lot of code to put there, but I believe it's for a good reason.