Vast Gui

Results 14 issues of Vast Gui

java.lang.NoSuchMethodError: 'void com.github.aachartmodel.aainfographics.aachartcreator.AAChartView.evaluateJavascript(java.lang.String, android.webkit.ValueCallback)' at com.github.aachartmodel.aainfographics.aachartcreator.AAChartView.safeEvaluateJavaScriptString(AAChartView.kt:327) at com.github.aachartmodel.aainfographics.aachartcreator.AAChartView.setContentWidth(AAChartView.kt:71) at com.github.aachartmodel.aainfographics.aachartcreator.AAChartView.setupBasicContent(AAChartView.kt:124) at com.github.aachartmodel.aainfographics.aachartcreator.AAChartView.(AAChartView.kt:111) at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) at org.jetbrains.android.uipreview.ViewLoader.createNewInstance(ViewLoader.java:325) at org.jetbrains.android.uipreview.ViewLoader.loadClass(ViewLoader.java:174) at org.jetbrains.android.uipreview.ViewLoader.loadView(ViewLoader.java:135) at com.android.tools.idea.rendering.LayoutlibCallbackImpl.loadView(LayoutlibCallbackImpl.java:294) at...

When making the weather program, I wanted to be able to refresh the category of the x-axis, but I didn't see a corresponding method.

enhancement

The color of the tab and indicator I set should be the same, as shown in the figure below ![example](https://img-blog.csdnimg.cn/c031351c0c1d49128ea0dd13e95640fd.png) But the actual implementation effect is biased. What is the...

目前逻辑是 ```kotlin mViewModel = ViewModelProvider(this, object : ViewModelProvider.Factory { override fun create(modelClass: Class): T { val vm = cast(createViewModel(modelClass)) if(vm::class.java != getVmClass(this@VastVbVmActivity, 1)) throw RuntimeException("Please check the return value of...

警告
高优先级(High)

例如 ```kt fun colorHex2Int(colorHex: String): Int { return Color.parseColor(colorHex) } ``` 其中 `parseColor` 会抛出 `IllegalArgumentException` 异常需要解决

待完善
普通优先级(Medium)

目前设计如下: ```kotlin final override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) initDataBind() mViewModel = createViewModel() initView(savedInstanceState) initSettings() } ``` 用户只能重写 `initView` 方法内的内容,但是我们如果想迁移到启动页会有以下要求: 在启动 activity 中,先调用 `installSplashScreen` ,然后再调用 `super.onCreate()` ```kotlin class MainActivity :...

新需求

待完善
普通优先级(Medium)