Как программно приостановить действие?У меня есть TabHost, который создает действие через Intent:
Intent intent; // Reusable Intent for each tab
// Create an Intent to launch an Activity for the tab (to be reused)
intent = new Intent().setClass(this, ARActivity.class);
intent.putExtras(b);
// Initialize a TabSpec for each tab and add it to the TabHost
spec = tabHost.newTabSpec("trending").setIndicator("Trending",res.getDrawable(R.drawable.icon)).setContent(intent);
tabHost.addTab(spec);
Я хочу иметь возможность приостановить действие, когда моя вкладка изменяетсяКак я могу прагматично приостановить действие?