jiarWang

Results 5 issues of jiarWang

主线程更新TagCloudView出现较多jank,可以尝试使用单独的非主线程进行维护进行优化,但是目前的TagClouldView限制了更新线程只能在主线程 解决方案:https://github.com/misakuo/3dTagCloudAndroid/pull/33/commits 如下方法可以自定义一个线程,并在线程中维护TagCloudView ```java //: MyThread.java @Override public void run() { Looper.prepare(); mHandler = new Handler(Looper.myLooper()); WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams( WindowManager.LayoutParams.MATCH_PARENT, Utils.dx2dp(400), TYPE_APPLICATION, 0, PixelFormat.TRANSPARENT); layoutParams.gravity = Gravity.TOP; layoutParams.flags...

2 big positioning points in the left are not complete, which make it hard to scan the QRCode for us。

适配 AGP 4.2.2 * AGP 4.2.2 要求 Java8,跑 demo 时需指定 JAVA_VERSION 为 1.8; * AGP 4.2.2 要求 Gradle 版本为 6.7.1,跑 demo 时需指定为 gradle-6.7.1-all;