18

我认为这是一个基本问题。是否有任何选项可以通过使用意图来停止活动。

Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:5554"));
startActivity(intent);

这是我的代码。如果用户忙或其他情况,我想停止此活动(也就是说,我想挂断此电话)。我能为此做些什么?我试过这个:

if (condition) {
    Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:5554"));
    startActivity(intent);
}else {
    this.finish();
}

但是没有用。有人有建议吗?

4

3 回答 3

28

几天前我遇到了这个问题,我很高兴地告诉你我已经找到了解决这个问题的方法。

首先,在要停止的活动中添加AndroidManifest.xml

android:launchMode="singleTop"

我将使用 CheckBox 示例。当它被选中时,活动开始,当未选中时,将终止活动。

示例 Activity A 正在调用 Activity B,然后使用意图杀死它。

代码放入A:

checkbox.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {
            Intent intent = new Intent(A.this, B.class);
            intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
            intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
            if (enable.isChecked()) {
                intent.putExtra("keep", true);
                startActivity(intent);
            }
            else
            {
                intent.putExtra("keep", false);
                startActivity(intent);
            }
        }
    });

要放入B的代码:

boolean keep;
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.B);
    intent = this.getIntent();
    boolean keep = intent.getExtras().getBoolean("keep");
    if(keep==true)
    {
        //execute your code here

    }
 }
    @Override
protected void onNewIntent(Intent intent)
{
    super.onNewIntent(intent);
    keep = intent.getExtras().getBoolean("keep");
    if(keep==false)
    {
        B.this.finish();
    }
}

解释:这基本上做的是,当复选框被选中时,它调用活动并传递一个布尔值,如果它是真的,活动保持活动状态并被带到前台。现在,如果您不传递标志,singleTop那么将创建此活动的许多实例。singleTop确保只调用相同的实例。现在,当未选中该复选框时,将传递一个新的 keep 值,该值在 B 中进行验证。如果未选中,则 Activity A 将传递 false,因此 B 从onNewIntent()函数内终止自身。

PS - 您也可以从另一个 Activity 关闭 Activity B。只需使用如果其他活动是 C:

Intent intent = new Intent(C.this, B.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
intent.putExtra("keep", false);
startActivity(intent);
于 2013-01-19T06:03:36.723 回答
0

您可以关闭播放商店的后台数据和播放服务以不进入播放商店。它只会说“无法加载”这是我发现停止意图的唯一方法

于 2017-06-29T00:36:56.097 回答
0
This worked for me:

AndroidManifest.xml:

        <activity android:name=".ui.activities.SettingsActivity"
            android:launchMode="singleTop"
            android:excludeFromRecents="true">
            <intent-filter>
                <action android:name="android.intent.action.STOP_SERVICE" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="text/plain" />
            </intent-filter>
        </activity>

意图:

Intent stopBackgroundServiceIntent = new Intent(this, SettingsActivity.class);
// Remove the activity when finish is called
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK );
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
于 2021-01-23T23:36:51.027 回答