https://github.com/MasayukiSuda/BubbleLayout
Bubble View for Android.
https://github.com/MasayukiSuda/BubbleLayout
android bubblelayout
Last synced: 14 days ago
JSON representation
Bubble View for Android.
- Host: GitHub
- URL: https://github.com/MasayukiSuda/BubbleLayout
- Owner: MasayukiSuda
- Created: 2016-05-08T10:56:12.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-07-08T15:00:46.000Z (almost 4 years ago)
- Last Synced: 2024-11-09T17:42:46.004Z (6 months ago)
- Topics: android, bubblelayout
- Language: Java
- Homepage:
- Size: 252 KB
- Stars: 973
- Watchers: 29
- Forks: 135
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-github-android-ui - BubbleLayout - 气泡文字框 (Popup)
- awesome-android-ui - https://github.com/MasayukiSuda/BubbleLayout
- awesome-android-ui - https://github.com/MasayukiSuda/BubbleLayout
README
# BubbleLayout
[](http://developer.android.com/index.html)![]()
[](https://android-arsenal.com/api?level=14)
[](https://android-arsenal.com/details/1/3564)Bubble View for Android with custom stroke width and color, arrow size, position and direction.
BubbleLayout Extends the FrameLayout.
# Gradle
Step 1. Add the JitPack repository to your build file
```groovy
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
Step 2. Add the dependency
```groovy
dependencies {
implementation 'com.github.MasayukiSuda:BubbleLayout:v1.2.2'
}
```# Basic Usage
![]()
Include the BubbleLayout widget in your layout.```xml
```
# Attributes
There are several attributes you can set:| attr | description |
|:---|:---|
| bl_arrowWidth | Width of the arrow, default 8dp |
| bl_arrowHeight | Height of the arrow, default 8dp |
| bl_arrowPosition | Position of the arrow, default 12dp |
| bl_cornersRadius | Corner radius of the BubbleLayout, default 0dp |
| bl_bubbleColor | Color of the BubbleLayout, default WHITE |
| bl_strokeWidth | Width of the stroke, default 0dp |
| bl_strokeColor | Color of the stroke, default GLAY |
| bl_arrowDirection | Drawing position of the arrow : 'left' or 'top' or 'right' or 'bottom' or 'left_center' or 'top_center' or 'right_center' or 'bottom_center' default 'left' |# Samples
```xml
```
```xml
```
```java
Button button = (Button) findViewById(R.id.btn_popup);BubbleLayout bubbleLayout = (BubbleLayout) LayoutInflater.from(this).inflate(R.layout.layout_sample_popup, null);
PopupWindow popupWindow = BubblePopupHelper.create(this, bubbleLayout);
final Random random = new Random();button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
int[] location = new int[2];
v.getLocationInWindow(location);
if (random.nextBoolean()) {
bubbleLayout.setArrowDirection(ArrowDirection.TOP);
} else {
bubbleLayout.setArrowDirection(ArrowDirection.BOTTOM);
}
popupWindow.showAtLocation(v, Gravity.NO_GRAVITY, location[0], v.getHeight() + location[1]);
}
});
```
layout_sample_popup.xml```xml
```
# LicenseCopyright 2016 MasayukiSuda
MIT License
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.