Finger

Results 4 issues of Finger

``` /** * X2C在TextView中的BUG * TextView的setTypeface方法在仅斜体且字体不设置的情况下,形参不对,必须得至少传入一个Typeface * fix: .setTypeface(Typeface.DEFAULT,Typeface.ITALIC); */ TextView textView = new TextView(getContext()); textView.setTypeface(Typeface.ITALIC); /** * X2C在CoordinatorLayout中的BUG * CoordinatorLayout不能当LinearLayout处理,CoordinatorLayout没有.setOrientation()方法 * fix:可不做处理 */ CoordinatorLayout coordinatorLayout = new CoordinatorLayout(getContext()); coordinatorLayout.setOrientation(LinearLayout.VERTICAL);...

cax目前本身有任何开启同层渲染的选项吗

当`v-model:show`更改时,DOM元素`mx-context-menu`直接被删除或添加了,此时动态改样式类css的动画是不生效的,可以做类似的处理或者预留一个类似`customAnimationClass`的参数吗。 ```css .mx-context-menu { transform: scale(0); transform-origin: left top; transition: transform 0.3s ease, visibility 0.3s ease; } .mx-context-menu.visible { transform: scale(1); } ``` 另外,有看到库里有一个渐显渐隐的动画,实际也是不生效的 https://github.com/imengyu/vue3-context-menu/blob/4b71d0e43b37faf5920a594859e567065c14e1a0/library/ContextMenu.scss#L44-L56

支持在`searchClass`时使用`annotations()`或者`annotations("com.teamhelper.imsdk.base.EventSubscriber")`的形式筛选出添加了某些注解的Class ```kotlin package com.teamhelper.imsdk.base class EventLifecycleSubscriber @Retention(AnnotationRetention.RUNTIME) @Target(AnnotationTarget.CLASS) annotation class EventSubscriber classLoader.searchClass(context) { extends() annotations() ..or.. annotations("com.teamhelper.imsdk.base.EventSubscriber") } ```