├── .classpath ├── .gitignore ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── LICENSE ├── README.md ├── libs ├── android-support-v4.jar └── library-2.4.0.jar ├── project.properties ├── res ├── drawable-hdpi │ ├── bg_transparency_to_grey.xml │ ├── ic_launcher.png │ ├── notification_bg.xml │ ├── notification_bg2.9.png │ └── notification_bg3.9.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── layout │ ├── notification.xml │ └── notification_bg.xml ├── menu │ └── my.xml ├── values-w820dp │ └── dimens.xml └── values │ ├── circle_imageview_attrs.xml │ ├── defualt.xml │ ├── dimens.xml │ └── strings.xml └── src └── com └── mingle └── headsUp ├── Distance.java ├── FloatView.java ├── HeadsUp.java ├── HeadsUpManager.java └── widget └── CircleImageView.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | gen/ -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/README.md -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/library-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/libs/library-2.4.0.jar -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/bg_transparency_to_grey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/drawable-hdpi/bg_transparency_to_grey.xml -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/notification_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/drawable-hdpi/notification_bg.xml -------------------------------------------------------------------------------- /res/drawable-hdpi/notification_bg2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/drawable-hdpi/notification_bg2.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/notification_bg3.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/drawable-hdpi/notification_bg3.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/layout/notification.xml -------------------------------------------------------------------------------- /res/layout/notification_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/layout/notification_bg.xml -------------------------------------------------------------------------------- /res/menu/my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/menu/my.xml -------------------------------------------------------------------------------- /res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /res/values/circle_imageview_attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/values/circle_imageview_attrs.xml -------------------------------------------------------------------------------- /res/values/defualt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/values/defualt.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/mingle/headsUp/Distance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/src/com/mingle/headsUp/Distance.java -------------------------------------------------------------------------------- /src/com/mingle/headsUp/FloatView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/src/com/mingle/headsUp/FloatView.java -------------------------------------------------------------------------------- /src/com/mingle/headsUp/HeadsUp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/src/com/mingle/headsUp/HeadsUp.java -------------------------------------------------------------------------------- /src/com/mingle/headsUp/HeadsUpManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/src/com/mingle/headsUp/HeadsUpManager.java -------------------------------------------------------------------------------- /src/com/mingle/headsUp/widget/CircleImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yemengsky/HeadsUp-Notification/HEAD/src/com/mingle/headsUp/widget/CircleImageView.java --------------------------------------------------------------------------------