胡萝卜须
胡萝卜须
 如上图所示,我想在java代码中使用这种效果,需要如何处理
您好,我尝试使用如下方法,但是没有生效 ```js formatter: function () { var s = '' + this.x + ''; for (i = 0; i < this.points.length; i++) { s += '' + this.series.name + ':...
您好,还有一个疑问辛苦大佬解答一下  就是自定义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的宽度是系统宽度,可以解决横屏后宽度没占满的问题 
但是高度还是没找到解决办法,还是出现横屏后不显示在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