49

GitHub - YoungBill/FloatWindow: Android自定义悬浮窗

 6 years ago
source link: https://github.com/YoungBill/FloatWindow
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

FloatWindow

readme-中文

Android自定义悬浮窗
原理很简单,就是借用了WindowManager这个管理类来实现的。

1. 首先在AndroidManifest.xml中添加使用权限:
uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"

2.二行代码实现自定义弹窗view

View contentView = inflater.inflate(R.layout.layout_pop, null);
NewFloatMainWindow.getFloatMainWindow(MainActivity.this, NewFloatMainWindow.LOCATION_LEFT, contentView);

3.实现悬浮窗如此简单

readme-en

A custom floating window for Android.

The theory is quite simple, and the implemention borrows from the WindowManager class.

1. First, allow permission to use AndroidManifest.xml:uses-permission android:

name = "android.permission.SYSTEM_ALERT_WINDOW"

2. The following lines of code will implement your custom pop-up:

viewView contentView = inflater.inflate (R.layout.layout_pop, null);
NewFloatMainWindow.getFloatMainWindow (MainActivity.this, NewFloatMainWindow.LOCATION_LEFT, contentView

3. Pop-up window complete

preview

preview.gif

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK