Harry-III

Results 4 comments of Harry-III

同问:快熟点击时,报错 Fragment FingerprintDialog{c892088 FingerprintAndrM} not attached to Activity

1.将代码拷下来,本地依赖,然后修改源码; 2.找到ValueFormatter类: ` public class ValueFormatter implements IValueFormatter { public static int prec = 6; // 默认6位小数 @Override public String format(float value) { String show = "%."+prec+"f"; return String.format(show, value);...

Hello,可以这样解决: 1.先找到DataHelper类; 2.类中找到calculateMA方法, ``` int[] maKeys=new int[]{5,10,30}; //要计算的几日均线 ``` 改为以下代码: ``` int[] maKeys=new int[]{5,10,20,30}; //要计算的几日均线 ``` 3.类中找到setMAPrice方法, ``` if(maxCount == 30) { kLineEntity.MA30Price = ma; } ``` 改为以下代码: ``` if...

I have the same problem now, have you a idea of the problem ,guys ? Thank you.