在应用程序运行时接收意图

时间:2014-04-23 09:45:05

标签: java android xml android-intent android-manifest

我已成功使我的应用程序在未运行时接收意图,它启动并将URI数据正确传递到应用程序的其余部分。它是一个原生的C ++应用程序,但下面的所有代码都与它的Java / Android API相关。

我正在尝试接收和处理在应用程序运行时收到的意图,无论是否为后台。到目前为止我还没有能够做到这一点,接收器似乎没有触发,我通常在从shell调用时得到这个错误,这表明我已经错误地设置了一些东西。

adb shell am start -W -a android.intent.action.VIEW -d "testappschema://Episode"
Starting: Intent { act=android.intent.action.VIEW dat=abg://Episode }
Error: Activity not started, unable to resolve Intent { act=android.intent.action.VIEW dat=testappschema://Episode flg=0x10000000 }

我已尝试过如此描述的BroadcastReciever的清单和动态分配Vogella Tutorial

我也一直在阅读官方文档,但在提供信息时它并没有太多的代码示例。

我在此处包含我的清单代码段,请注意这是一个模板,某些值(通常以双下划线为前缀)在构建时自动填充

<application android:label="@string/app_name" android:icon="@drawable/app_icon" android:hasCode="true" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:debuggable="__DEBUGGABLE" android:name="__APPLICATIONNAME" android:largeHeap="true">
 <activity android:name="__ACTIVITYNAME" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden|screenSize" android:screenOrientation="sensorLandscape" android:launchMode="singleTask">
  <intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
  </intent-filter>
  <intent-filter android:label="@string/app_name">
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:scheme="testappschema_launch" />
  </intent-filter>
</activity>
<receiver   
    android:name="com.testapp.IntentListener"
    android:enabled="true"
    android:exported="true">
    <intent-filter android:label="@string/app_name">
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <data android:scheme="testappschema" />
    </intent-filter>
</receiver>

这是我的BroadcastReciever类

package com.testapp;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

import android.util.Log;

public class IntentListener extends BroadcastReceiver{

    private Intent m_tCurrentIntent = null;

    @Override
    public void onReceive(Context context, Intent tIntent) {
            Log.d("IntentListener", "IntentRecv: " + tIntent.getData().toString());
        m_tCurrentIntent = tIntent;
    }

    public Intent getCurrentIntent()
    {
        Log.d("IntentListener", "getCurrentIntent");
        Intent tTempIntent = m_tCurrentIntent;
        m_tCurrentIntent = null;
        return tTempIntent;
    }

}

2 个答案:

答案 0 :(得分:0)

如果您要查看ADB shell commands,您会发现am start仅用于启动Activity,您应该知道BroadcastReceiver != Activity。对于广播,您应该使用am broadcast

答案 1 :(得分:0)

我实际上只需要在我的活动中使用onNewIntent方法,而不是在onNewIntent上使用广播接收器