BubblePopupWindow

Introduction: Android 实现各个方向的气泡弹窗,可控制气泡尖角偏移量。
More: Author   ReportBugs   
Tags:
Android-气泡-PopupWindow-Bubble-

Android 实现各个方向的气泡弹窗,可控制气泡尖角偏移量。

截图

依赖

dependencies {
    compile 'com.yuyh.bubble:library:1.0.0'
}

使用

  • 默认弹窗
    BubblePopupWindow leftTopWindow = new BubblePopupWindow(MainActivity.this);
    View bubbleView = inflater.inflate(R.layout.layout_popup_view, null);
    TextView tvContent = (TextView) bubbleView.findViewById(R.id.tvContent);
    tvContent.setText("HelloWorld");
    leftTopWindow.setBubbleView(bubbleView); // 设置气泡内容
    leftTopWindow.show(view, Gravity.BOTTOM, 0); // 显示弹窗
    
    /**
    * 显示弹窗
    *
    * @param parent
    * @param gravity
    * @param bubbleOffset 气泡尖角位置偏移量。默认位于中间
    */
    public void show(View parent, int gravity, float bubbleOffset) {
      // ...
    }
    
  • 自定义弹窗 使用气泡布局 ```xml <?xml version="1.0" encoding="utf-8"?>

``` 然后通过 PopupWindow 显示气泡弹窗,当然,也可直接显示气泡布局。

Apps
About Me
GitHub: Trinea
Facebook: Dev Tools