Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
hzw1199 committed Jul 16, 2019
1 parent 6c26fba commit 914557d
Show file tree
Hide file tree
Showing 7 changed files with 342 additions and 1 deletion.
169 changes: 169 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,169 @@
# FloatingView
[![](https://jitpack.io/v/hzw1199/FloatingView.svg)](https://jitpack.io/#hzw1199/FloatingView)

![](/media/viewgroup.webm)
![](/media/system.webm)
![](/media/activity.webm)

# Features

* Support three modes: ```OverlaySystem``````OverlayActivity``` and ```OverlayViewGroup```
* ```OverlaySystem```: Display FloatingView above other apps
* ```OverlayActivity```: Display FloatingView above certain Activity
* ```OverlayViewGroup```: Display FloatingView above certain ViewGroup
* Move FloatingView with finger
* Define 9 initial position for FloatingView
* Define initial paddings for FloatingView

# Usage

### Step 1

Add it in your build.gradle at the end of repositories:

```
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
```

Add the dependency in the form:

```
dependencies {
compile 'com.github.hzw1199:FloatingView:1.0.0'
}
```

### Step 2

Configure and display

* ```OverlaySystem``` mode

onCreate:

```java
FloatingViewConfig config = new FloatingViewConfig.Builder()
.setPaddingLeft(paddingLeft)
.setPaddingTop(paddingTop)
.setPaddingRight(paddingRight)
.setPaddingBottom(paddingBottom)
.setGravity(gravity)
.build();
floatingView = new FloatingView(OverlaySystemActivity.this, R.layout.view_floating, config);
floatingView.showOverlaySystem();
```

onDestroy:

```
if (floatingView != null) {
floatingView.hide();
}
```

* ```OverlayActivity``` mode

onAttachedToWindow:

```java
FloatingViewConfig config = new FloatingViewConfig.Builder()
.setPaddingLeft(paddingLeft)
.setPaddingTop(paddingTop)
.setPaddingRight(paddingRight)
.setPaddingBottom(paddingBottom)
.setGravity(gravity)
.build();
floatingView = new FloatingView(OverlaySystemActivity.this, R.layout.view_floating, config);
floatingView.showOverlayActivity();
```

onDetachedFromWindow:

```
if (floatingView != null) {
floatingView.hide();
}
```

* ```OverlayViewGroup ``` mode

onCreate:

```java
lyViewGroup.post(new Runnable() {
@Override
public void run() {
FloatingViewConfig config = new FloatingViewConfig.Builder()
.setPaddingLeft(paddingLeft)
.setPaddingTop(paddingTop)
.setPaddingRight(paddingRight)
.setPaddingBottom(paddingBottom)
.setGravity(gravity)
.setDisplayWidth(lyViewGroup.getWidth())
.setDisplayHeight(lyViewGroup.getHeight())
.build();
floatingView = new FloatingView(OverlaySystemActivity.this, R.layout.view_floating, config);
floatingView.showOverlayViewGroup(lyViewGroup);
}
});
```

onDestroy:

```
if (floatingView != null) {
floatingView.hide();
}
```

```lyViewGroup``` is the ViewGroup to display FloatingView above

### Step 3

Click event

```java
floatingView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

}
});
```

## Tip

* Please check the demo before use.
* If this project helps you, please star me.
* [Blog](https://blog.zongheng.pro)

## License

```
The MIT License (MIT)
Copyright (c) 2017 AndroidGpsStatus
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```
169 changes: 169 additions & 0 deletions READMEcn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,169 @@
# FloatingView
[![](https://jitpack.io/v/hzw1199/FloatingView.svg)](https://jitpack.io/#hzw1199/FloatingView)

![](/media/viewgroup.webm)
![](/media/system.webm)
![](/media/activity.webm)

## Features

* 支持```OverlaySystem``````OverlayActivity``````OverlayViewGroup``` 三种模式
* ```OverlaySystem```模式下可在其他APP上显示,自动申请权限
* ```OverlayActivity```模式下只在指定的Activity上显示
* ```OverlayViewGroup```模式下只在指定的ViewGroup上显示
* 可随着手指拖动
* 可指定9个初始位置
* 可指定初始paddings

## Usage

### Step 1

在project的build.gradle中加入以下语句:

```
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
```

在module的build.gradle中加入以下语句:

```
dependencies {
compile 'com.github.hzw1199:FloatingView:1.0.0'
}
```

### Step 2

创建配置并显示

* ```OverlaySystem```模式

onCreate:

```java
FloatingViewConfig config = new FloatingViewConfig.Builder()
.setPaddingLeft(paddingLeft)
.setPaddingTop(paddingTop)
.setPaddingRight(paddingRight)
.setPaddingBottom(paddingBottom)
.setGravity(gravity)
.build();
floatingView = new FloatingView(OverlaySystemActivity.this, R.layout.view_floating, config);
floatingView.showOverlaySystem();
```

onDestroy:

```
if (floatingView != null) {
floatingView.hide();
}
```

* ```OverlayActivity```模式

onAttachedToWindow:

```java
FloatingViewConfig config = new FloatingViewConfig.Builder()
.setPaddingLeft(paddingLeft)
.setPaddingTop(paddingTop)
.setPaddingRight(paddingRight)
.setPaddingBottom(paddingBottom)
.setGravity(gravity)
.build();
floatingView = new FloatingView(OverlaySystemActivity.this, R.layout.view_floating, config);
floatingView.showOverlayActivity();
```

onDetachedFromWindow:

```
if (floatingView != null) {
floatingView.hide();
}
```

* ```OverlayViewGroup ```模式

onCreate:

```java
lyViewGroup.post(new Runnable() {
@Override
public void run() {
FloatingViewConfig config = new FloatingViewConfig.Builder()
.setPaddingLeft(paddingLeft)
.setPaddingTop(paddingTop)
.setPaddingRight(paddingRight)
.setPaddingBottom(paddingBottom)
.setGravity(gravity)
.setDisplayWidth(lyViewGroup.getWidth())
.setDisplayHeight(lyViewGroup.getHeight())
.build();
floatingView = new FloatingView(OverlaySystemActivity.this, R.layout.view_floating, config);
floatingView.showOverlayViewGroup(lyViewGroup);
}
});
```

onDestroy:

```
if (floatingView != null) {
floatingView.hide();
}
```

```lyViewGroup```是用来放置FloatingView的ViewGroup

### Step 3

点击事件

```java
floatingView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

}
});
```

## Tip

* 使用前请查看demo
* 若对你有帮助请加星
* [Blog](https://blog.zongheng.pro)

## License

```
The MIT License (MIT)
Copyright (c) 2017 AndroidGpsStatus
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
4 changes: 3 additions & 1 deletion floatingview/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.hzw1199'

android {
compileSdkVersion 28
Expand Down Expand Up @@ -28,7 +30,7 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

api 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
Expand Down
Binary file added media/activity.webm
Binary file not shown.
Binary file added media/system.webm
Binary file not shown.
Binary file added media/viewgroup.webm
Binary file not shown.

0 comments on commit 914557d

Please sign in to comment.