drogbababa

Results 7 issues of drogbababa

This page helps me a lot! i want to add some links or words at the bottom of the page,under the elements,Is there any methods?thanks.

i can get method count,is there anyway to dump methods name? btw,some classes's method-count are different to javap's.

BEFileChooserUIWin这个类是可以定义一个不同UI的FileChooser嘛?

在程序前面增加了BeautyEye之后,使用frame.setExtendedState(JFrame.MAXIMIZED_BOTH);设置窗口最大化是无效的,请问有什么解决方法吗?

形如以下字符串所拼接成的一个完整的cookie ALF=1508402613; Apache=8011726459953.934.1476866663139; SCF=【实际需要,但phantomJS没获取到】 SINAGLOBAL=8011726459953.934.1476866663139; SSOLoginState=1476866657; SUB=【实际需要,但phantomJS没获取到】 SUHB=079ir7sjI-ybjm; SUBP=0033WrSXqPxfM725Ws9jqgMF55529P9D9WWRA0_nRLiEO4qNVpFZ7AQh5JpX5K2hUgL.FozXe0M41KMN1KM2dJLoI7fzqgL0dgLj9HvNqg4r; ULV=1476866663145:1:1:1:8011726459953.934.1476866663139: UOR=【可有可无,但phantomJS也没获取到】 YF-Page-G0=【可有可无,但phantomJS没获取到】 YF-Ugrow-G0=b02489d329584fca03ad6347fc915997; YF-V5-G0=a0e87040bfaca9b1b05c465a9e888d2d; _s_tentry=-; wvr=6;

Please fill out the blanks below describing your issue What are the steps to reproduce this issue? ------------------------------------------- 1. … 2. … 3. … … What happens? some little movement...

作者您好,我在看您的[HeartView](https://github.com/zincPower/UI2018/blob/783004bde599c36d8ede09971e7f25bf5ee91aa3/code8_canvas_clip/src/main/java/com/zinc/code8_canvas_clip/widget/HeartView.java) ,其中有个问题想请教。就是createHeart()中,为什么要用lineTo,我用了moveTo发现可能会有缺口,可一个曲线的起点和下一个曲线的起点应该重合才对(预期moveTo就好)。 ` if (i == 0) { path.moveTo(pointList.get(i * 3).x, pointList.get(i * 3).y); } else { path.lineTo(pointList.get(i * 3).x, pointList.get(i * 3).y); } `