应用程序仅用于启动活动

时间:2012-10-20 06:10:34

标签: java android

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

所以app应该是空的,它唯一需要做的就是启动录音机 com.android.soundrecorder / com.android.soundrecorder.SoundRecorder

我该怎么做?

我得到Force Stop:

`

<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;

}
}`

2 个答案:

答案 0 :(得分:1)

两种方式:

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

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

OR

下载Tasker。它具有让您直接通过手机创建应用程序的功能。您只需创建一个启动所需应用程序的Tasker配置文件。

答案 1 :(得分:0)

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

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

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

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

活动代码:

@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"