1

In android, I have a TabActivity with 2 tabs and each tab has it own activity (say ActivityA and ActivityB). When I am on ActivityA, and I click on ActivityB's tab, how does the ActivityA knows it is no longer the active Tab?

michael
  • 106,540
  • 116
  • 246
  • 346

1 Answers1

3

I believe onPause() will be triggered in the Activity which is no longer visible in this situation

james
  • 26,141
  • 19
  • 95
  • 113