Android - Drupe like Translucent overlay
Drupe (Contacts. Your Way) for Android has a smart way to interact with contacts and communicate quickly. At a glance, this seems to be using some kind of overlay to display the contacts and a shortcut to launch an app. The shortcut to launch the main window appears on any screen and this is similar to facebook's chat heads and implemented via SYSTEM_ALERT_WINDOW. The real trick is how the application launches the main window to show the contents. Expanding or clicking on the drupe shortcut launches an Activity which basically doesn't display any content or an action bar. This can be achieved via a Theme, <style name="Theme.AppCompat.Empty"> <item name="android:windowNoTitle">true</item> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:colorBackgroundCacheHint">@null...