Disable home button in android toddler app?

后端 未结 5 971
夕颜
夕颜 2020-11-29 04:07

I\'ve developed and app that is a slide show of pictures which each play a sound when you tap them. It\'s like a picture book for ages 2-4.

The problem is, since and

5条回答
  •  借酒劲吻你
    2020-11-29 04:52

    I replaced the Default Home launcher using the following code:

    Intent selector = new Intent("android.intent.action.MAIN");
    selector.addCategory("android.intent.category.HOME");
    selector.setComponent(new ComponentName("android","com.android.internal.app.ResolverActivity"));
    startActivity(selector);
    

提交回复
热议问题