In my application consider i am having 2 screens screen A and screen B.In screen A i have 2 edit boxes and 1 spinner,When coming first time the screen will not show the 2 edit boxes.And if user selects any value from spinner it will go to screen B,in that i am getting some values from user and if user clicks OK it will come to Screen A.Now it should show the 2 edit boxes.SO i done startactivityforresult ,but it is not coming into that part.Please help me.Thanks in advance.
My coding:
screen B:
ok.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View arg0)
{
// TODO Auto-generated method stub
Intent intent=new Intent(getApplicationContext(),BudgetJulyo4Activity.class);
startActivityForResult(intent, 1);
}
});
Screen A:
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
// Result OK.d.
System.out.println("Inside start"); -------------->This line is not printing.SO what i am doing wrong.
if (requestCode == 1)
{
// do something good
System.out.println("Inside start if");
EditText date=(EditText)findViewById(R.id.startdate);
EditText NoOfRecc=(EditText)findViewById(R.id.editText3);
date.setVisibility(View.VISIBLE);
NoOfRecc.setVisibility(View.VISIBLE);
}
}