为什么我的应用程序不会处理我的意图?

时间:2014-03-06 04:24:11

标签: java android android-intent url-scheme main-activity

我有这个应用程序:

import android.R.drawable;
import android.net.Uri;
import android.os.Bundle;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);


        String b64encoded = null;
        Intent intent = getIntent();
        Uri data = intent.getData();
        b64encoded = data.getEncodedSchemeSpecificPart();
        if (b64encoded != null) {

            if (data.getScheme() == "cqrsa") {
                AlertDialog.Builder builder = new AlertDialog.Builder(this);
                builder.setTitle("Authentication");
                builder.setMessage("Clicked: " + b64encoded);
                builder.setCancelable(false);
                builder.setIcon(drawable.ic_lock_lock);
                builder.setNeutralButton(android.R.string.ok,
                        new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {
                        dialog.cancel();
                        android.os.Process.killProcess(android.os.Process.myPid());
                    }
                });
                AlertDialog alert = builder.create();
                alert.show();
            }
            if (data.getScheme() == "sqrsa") {
                AlertDialog.Builder builder = new AlertDialog.Builder(this);
                builder.setTitle("Authentication");
                builder.setMessage("Scanned: " + b64encoded);
                builder.setCancelable(false);
                builder.setIcon(drawable.ic_lock_lock);
                builder.setNeutralButton(android.R.string.ok,
                        new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int id) {
                        dialog.cancel();
                        android.os.Process.killProcess(android.os.Process.myPid());
                    }
                });
                AlertDialog alert = builder.create();
                alert.show();
            }
        }
        else
        {
            AlertDialog.Builder builder = new AlertDialog.Builder(this);
            builder.setTitle("Authentication");
            builder.setMessage("No data was supplied");
            builder.setCancelable(false);
            builder.setIcon(drawable.ic_dialog_alert);
            builder.setNeutralButton(android.R.string.ok,
                    new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {
                    dialog.cancel();
                    android.os.Process.killProcess(android.os.Process.myPid());
                }
            });
            AlertDialog alert = builder.create();
            alert.show();
        }    

    }



    @Override
    public void onDestroy() {
        super.onDestroy();
        android.os.Process.killProcess(android.os.Process.myPid());
    }
}

然后我将AndroidManifest中的意图定义为:

<activity android:name="eu.sebbe.www.qrsaauthentication.MainActivity" android:label="AuthTestLabel">
        <intent-filter>
             <data android:scheme="cqrsa" />
             <data android:scheme="sqrsa" />                        
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
        </intent-filter>
</activity>

但是,在测试应用程序时,Intent捕获程序仅挂起并显示“AuthTestLabel”屏幕。

似乎MainActivity根本没有被执行。 我做错了什么?

我创建了一个空白的Android项目(没有任何界面),因为这个应用程序应该只计算一次性密码并在对话框中显示在屏幕上(或将其放在剪贴板中),具体取决于是否从点击的链接调用了应用程序或扫描的二维码。 (这就是为什么我定义2个urlhandlers,sqrsa和cqrsa)

该应用有什么问题?

1 个答案:

答案 0 :(得分:2)

您正在if语句中将String与==运算符进行比较,该条件可能会返回false

您需要将字符串与equals()进行比较,例如将此data.getScheme() == "sqrsa"更改为(data.getScheme().equals ("sqrsa"))