胡萝卜须

Results 9 comments of 胡萝卜须

![Dingtalk_20210916210428](https://user-images.githubusercontent.com/30490259/133617178-af048c83-ba0c-444c-b1dd-32980ef0360d.jpg) 如上图所示,我想在java代码中使用这种效果,需要如何处理

您好,我尝试使用如下方法,但是没有生效 ```js formatter: function () { var s = '' + this.x + ''; for (i = 0; i < this.points.length; i++) { s += '' + this.series.name + ':...

您好,还有一个疑问辛苦大佬解答一下 ![image](https://user-images.githubusercontent.com/30490259/133711128-a9e26455-707c-4c2a-a6a8-fae386970dcb.png) 就是自定义tooltip后前面的圆点样式需要如何加上

您好,不好意思,js的方法上面是我写错了 ```js formatter: function () { var s = '' + this.x + ''; for (i = 0; i < this.points.length; i++) { s += '' + this.points[i].series.name + ':...

还有,我在使用ConstraintLayout为layout布局时,全屏后不会在指定的targetView下,而是撑满了屏幕的高度

您好,宽度设置.align(PopupLayer.Align.Direction.VERTICAL, PopupLayer.Align.Horizontal.TO_PARENT_RIGHT, PopupLayer.Align.Vertical.BELOW, true)后查看源码后发现PopupLayer.Align.Horizontal.TO_PARENT_RIGHT的宽度是系统宽度,可以解决横屏后宽度没占满的问题 ![image](https://user-images.githubusercontent.com/30490259/116196473-25f13680-a766-11eb-9b59-5c5d1f69ce8b.png)

但是高度还是没找到解决办法,还是出现横屏后不显示在targetView下面

pop弹框代码 ```java private PopupLayer popupLayer; if (popupLayer == null) { popupLayer = AnyLayer.popup(findViewById(R.id.tv_show_custom_full)) .align(PopupLayer.Align.Direction.VERTICAL, PopupLayer.Align.Horizontal.CENTER, PopupLayer.Align.Vertical.BELOW, false); popupLayer.contentView(R.layout.dialog_custom_full) .animStyle(DialogLayer.AnimStyle.TOP) //设置浮层外部是否拦截触摸 .outsideInterceptTouchEvent(false) //点击外部是否消失 设为true 设为false代码没处理穿透事件 .outsideTouchedToDismiss(false) .backgroundDimDefault() .onInitialize(new Layer.OnInitialize() { @Override...

targetView findViewById(R.id.tv_show_custom_full)是固定在顶部的,然后更改适配器的item数量后,高度太高会覆盖住targetView