0

I want to create an application "menu" which houses 4 or 5 icons which launch customs applications specific to my company. Is there a specific way to do this in Android?

I don't know what it would be called, exactly, and googling "android launcher", "menu" and "application shell" just bring up a lot of unrelated static. What's this called in android parlance?

Matthew
  • 44,826
  • 10
  • 98
  • 87
wufoo
  • 13,571
  • 12
  • 53
  • 78

4 Answers4

4

Wufoo,

It sounds like you want an application dashboard. The Google iosched example program might get you on the right path: http://code.google.com/p/iosched/

Unless you mean to have the device ONLY launch your applications, then your app would be a complete Launcher replacement. The Launcher is described as...

The activity can be the initial activity of a task and is listed in the top-level application launcher.

But that may no be what you want.

Will Tate
  • 33,439
  • 9
  • 77
  • 71
  • 1
    Ahhh.. yes, the dashboard. That's the only buzzword I couldn't think of googling. Yep, in the link you sent, I want to do something like what's in the left pic. Having other stuff on the phone is fine, I just want a "main menu" type application window to launch stuff like a corporate contact list, home page app, etc. – wufoo Mar 04 '11 at 17:06
  • next week it'll be called a cyberdash or something. keep up! ;) – Will Tate Mar 04 '11 at 17:08
1

Do you want to replace the device home screen and act as the default launcher?

If so you can use some intent filters as per this answer:

<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>
Community
  • 1
  • 1
Matthew
  • 44,826
  • 10
  • 98
  • 87
0

Kiosk Mode. You could customise this (disable access to menu, limit application addition etc) http://code.google.com/p/android-launcher-plus/

rbot
  • 249
  • 2
  • 11
0

You can use home-screen folders to manage arbitrary groups of app launcher icons. Long-press on the home-screen background and select "Folder" to experiment.

Graham Borland
  • 60,055
  • 21
  • 138
  • 179