开发者

Android 2.2: How to make an app to run automaticly on startup & how to make an app start another app

开发者 https://www.devze.com 2023-02-01 20:52 出处:网络
The topic pre开发者_运维百科tty much says it all.Use BroadcastReceiver that receives Intent of action BOOT_COMPLETED.

The topic pre开发者_运维百科tty much says it all.


Use BroadcastReceiver that receives Intent of action BOOT_COMPLETED.

in onReceive() method create an Intent for your activity:

@Override
public void onReceive(Context context, Intent intent) {

 Intent myIntent = new Intent(context, YourActivity.class);
 context.startActivity(myIntent);
}


For the application on startup, you need to add the permission

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

to your manifest. Then do as Vladimir wrote.

For starting another app, you need to know the (hopefully official) intent to start it. Otherwise see my reply on question calling an activity that is in another package(android)

For example, starting the LastFM app would be like this:

final Intent i = new Intent("android.intent.action.MAIN");                
i.setComponent(new ComponentName("fm.last.android","fm.last.android.LastFm"));
startActivity(i);
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号