Tima
Tima

Reputation: 12915

What kind of app is this?

I installed yesterday this app http://www.appbrain.com/app/mini-info/com.dynotes.miniinfo from android market on my phone.

But I've never seen such apps before. It doesn't look like a widget, it looks like custom dialog.

So, does anybody know, what technique has the author of this app used?

Upvotes: 1

Views: 135

Answers (3)

George
George

Reputation: 1327

Description A simple & hassle free way for device info. Widgets, toggle bar, and lots more!

https://market.android.com/details?id=com.dynotes.miniinfo&feature=search_result

Upvotes: 1

TofferJ
TofferJ

Reputation: 4784

If the left screen isn't a widget, it's most likely a regular Activity but with a theme that looks something like this:

<style name="Theme.FloatingMenu" parent="android:Theme">
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowBackground">@android:color/transparent</item>
</style>

And this theme is applied to the Activity in the manifest file like this:

<activity
    android:name="com.example.MyActivity"
    android:theme="@style/Theme.FloatingMenu" />

Upvotes: 2

user340145
user340145

Reputation:

Without having tried the app I would say that the one to the left is a dialog, and the ones to the right are regular widgets.

Upvotes: 1

Related Questions