Как программно приостановить действие?

#java #android #android-activity #android-intent #android-tabhost

#java #Android #android-активность #android-намерение #android-tabhost

Вопрос:

Как я могу программно приостановить действие? У меня есть TabHost, который создает действие с помощью намерения:

 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);
  

Я хочу иметь возможность приостанавливать действие при изменении моей вкладки. Как я могу прагматично приостановить действие?

Комментарии:

1. я полагаю, что действие приостановится само по себе.

Ответ №1:

Действие всегда будет приостановлено, если оно не отображается. Читайте здесь http://developer.android.com/guide/topics/fundamentals.html#actlife