一个支持拖曳、自动靠边、拖放调整大小、多窗口的悬浮窗。
效果图:
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
compile 'com.github.hyb1996:EnhancedFloaty:0.14'
}
通过context.startService(new Intent(context, FloatyService.class));
启动悬浮窗服务。
通过FloatyService.addWindow(window);
来添加悬浮窗。
例如FloatyService.addWindow(new ResizableFloatyWindow(new SampleFloaty()));
更多用法参见Sample。
MIT