App Drawer(ホーム画面ではない)でSoundRecorderを起動するためのショートカットを追加しようとしています
したがって、アプリは空である必要があり、必要な作業は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;
}
}`