Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to register an application as a Home alternative

Tags:

android

I'm building an alternative Home application (a replacement of the standard launcher).

There's something I don't know how to make : how do you register your application so that it is called when the user click on the Home hard button ?

like image 275
Denys Séguret Avatar asked Apr 28 '10 19:04

Denys Séguret


People also ask

Can I register a business at a residential address?

If you are planning to conduct small-scale business from your home, you may use your residential address as the business address under the Home Office Scheme. You can apply for approval under the Home Office Scheme before you submit your business registration to ACRA.

What is alternate address Acra?

The alternate address must be an address where you can be contacted (e.g. your office, your corporate service provider's office, etc.), and must be within the same jurisdiction as the residential address. It cannot be a P.O. Box address.

Can I use rental address for P1 registration?

Can I still use my rental address for P1 registration? You should arrange to extend your lease accordingly, such that your child resides at the address for at least 30 months from the start of the P1 Registration Exercise, which is 29 June 2022 for the 2022 P1 Registration Exercise.


1 Answers

It all depends on intent filter:

    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.HOME"/>
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
like image 69
yanchenko Avatar answered Oct 23 '22 09:10

yanchenko