我有一个 tabhost 包含4 activities
.
1===>>show my appointments
2===>>set Appointment
3===>>Block calender
4===>>other.
1.I need to launch the set appointment from the show my appointment by passing some data (but tabhost should be remains)
2. From the dash board if want to open set appointment in tabhost but internally its executing all activities in tabhost how can I avoid this if I am coming from the dash board to tabhost
.
我用tabHost.setCurrentTab(SetAppointment );
但在内部,它也在执行其他活动,但这不应该发生。
public class ShowMyAppointments extends Activity implements OnClickListener
{
// in list selection the below code
else if(showItems[selectedPosition].equals("ReSchedule")){
String appointmentId = String.valueOf(appointmentsList.get(SELECTED_PATIENT).getId());
String statusCode = Constants.STATUS_CANCLEED_DOCTOR;
new SatusAsunc(ShowMyAppointments.this ,appointmentId , statusCode).execute();
HomeGridViewActivity.value=1;
Constants.CONSUMER_ID=appointmentsList.get(SELECTED_PATIENT).getConsumerID();
Constants.CONTACT_NO=appointmentsList.get(SELECTED_PATIENT).getConsumerContact();
Constants.PATIENT_NAME=appointmentsList.get(SELECTED_PATIENT).getConsumerName();
Intent intent = new Intent(ShowMyAppointments.this , BaseActivity.class);
startActivity(intent);
}