1

我正在尝试添加快捷方式以在 App Drawer(不是主屏幕)上启动录音机

所以应用程序应该是空的,它唯一要做的就是启动 Sound Recorder com.android.soundrecorder/com.android.soundrecorder.SoundRecorder

我怎样才能做到这一点?

我得到了强制停止:

`

<uses-sdk
    android:minSdkVersion="16"
    android:targetSdkVersion="15" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".Recorder"
        android:label="@string/title_activity_recorder" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

`

和java文件

`package recorder.audio.dsaif;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;

public class Recorder extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.android.soundrecorder.SoundRecorder");
    startActivity(LaunchIntent);
    setContentView(R.layout.activity_recorder);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_recorder, menu);
    return true;

}
}`
4

2 回答 2

1

两种方式:

创建您自己的应用程序。从那里启动不同的应用程序非常简单。

Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.android.soundrecorder.SoundRecorder");
startActivity(LaunchIntent);

或者

下载塔斯克。它具有一项功能,可让您直接从手机创建应用程序。您可以简单地创建一个 Tasker 配置文件来启动您想要的应用程序。

于 2012-10-20T06:16:27.020 回答
0

我认为您需要添加一个新任务的标志,并调用finish()并删除setContentView。

如果崩溃是由空指针异常引起的,则可能是包不正确和/或未安装应用程序。

这就是为什么你需要检查意图是给你的还是空的。

顺便说一句,变量名称应该有一个小写字母。

这里的活动代码:

@Override
  protected void onCreate(final Bundle savedInstanceState)
    {
    super.onCreate(savedInstanceState);
    final Intent launchIntent=getPackageManager().getLaunchIntentForPackage("com.android.soundrecorder.SoundRecorder");
    if(launchIntent==null)
      {
      Toast.makeText(this,"can't find the app to launch!",Toast.LENGTH_SHORT).show();
      finish();
      return;
      }
    launchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    startActivity(launchIntent);
    finish();
    }

在清单文件中,将此属性添加到活动标记以避免显示活动的“正常”样式:

android:theme="@android:style/Theme.Dialog"
于 2012-10-20T08:38:13.563 回答