导航菜单

页面标题

页面副标题

Tasker v6.5.11 - VoiceProxy.java 源代码

正在查看: Tasker v6.5.11 应用的 VoiceProxy.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package net.dinglisch.android.taskerm;

import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.os.Bundle;

public class VoiceProxy extends Activity {
    public static Intent a() {
        return new Intent("android.speech.action.RECOGNIZE_SPEECH");
    }

    @Override
    protected void onActivityResult(int i, int i2, Intent intent) {
        r7.f("VoiceProxy", "oar: req " + i + " res: " + i2);
        Intent intent2 = new Intent("net.dinglisch.android.tasker.RECCY");
        intent2.setComponent(new ComponentName(getPackageName(), ExecuteService.class.getName()));
        if (intent != null && intent.getExtras() != null) {
            intent2.putExtras(intent.getExtras());
        }
        startService(intent2);
        finish();
    }

    @Override
    public void onCreate(Bundle bundle) {
        super.onCreate(bundle);
        if (bundle == null) {
            bundle = getIntent().getExtras();
        }
        Intent a = a();
        a.putExtras(bundle);
        startActivityForResult(a, 0);
    }
}