mnb65482

Results 2 comments of mnb65482

That's because the web can't use big numbers.You can change DatabaseHelper.java case Cursor.FIELD_TYPE_INTEGER: columnData.dataType = DataType.INTEGER; columnData.value = cursor.getLong(i); to case Cursor.FIELD_TYPE_INTEGER: columnData.dataType = DataType.TEXT; columnData.value = String.valueOf(cursor.getLong(i));

这个问题我倒是遇到过,module里对Android8.0做了特殊处理,有个useSoftwareLayerOnAndroid8方法,关闭了硬件渲染,好像是为了规避8.0系统EditText的bug,后来google好像是发补丁处理了这个问题了,所以把useSoftwareLayerOnAndroid8方法注释掉就行了