
android
wangyun522
这个作者很懒,什么都没留下…
展开
-
安卓上的 3D 模型加载 和骨骼动画 库 SceneView
android 3d 模型加载库 可以实现骨骼动画原创 2023-02-23 01:29:42 · 1908 阅读 · 0 评论 -
迁移 到AndroidX 的一些坑
最近看github上的项目 十有八九都已经是 androidX的了,一方面感叹之余,另一方面也想把两年的老项目升级一下,说干就干,拉一个分支,一波走起。gradle.properties 配置一波#表示当前项目启用 androidxandroid.enableJetifier=true#表示将依赖包也迁移到androidxandroid.useAndroidX=trueapp 下的g...原创 2020-01-11 21:34:38 · 3068 阅读 · 0 评论 -
animated-rotate 的 drawable 的卡顿与解决办法
偶然在系统源码中看到这个东西 style="?android:attr/progressBarStyle" 发现他用了一个类似如下的 drawable ,<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android" android:drawable="@drawable/progressbar...原创 2019-12-14 07:06:39 · 2330 阅读 · 0 评论 -
协程在Activity中的运用
早期的版本class MyActivity :AppCompatActivity, CoroutineScope { val job = Job() //指定协程的scope override val coroutineContext: CoroutineContext get() = job + Dispatchers.Main override fun ...原创 2019-12-14 06:10:14 · 1586 阅读 · 0 评论 -
ConstraintLayout 2.0 beta2 中motionLayout的一些坑
布局中,如果android:fitsSystemWindows=“true” 没有设置的话,会有 fragment 中的recycleview 更新数据后 视图不及时更新的问题布局如果是xml 写的,那么会遇到第二次设置Textview值无法更新长度的问题,额,真坑...原创 2019-09-25 21:12:30 · 642 阅读 · 0 评论 -
① Tinker loader classes are found in old secondary dex 错误 和②groovy.lang.MissingPropertyException: Co
错误groovy.lang.MissingPropertyException: Could not get unknown property ‘packageForR’ for task网上一堆的butterknife 降级的办法,但更有可能的是,你用了butterknife 8.5以上的版本,但又在app的build.gradle里添加了apply plugin: ‘com.jakewhar...原创 2018-10-11 18:57:03 · 6742 阅读 · 1 评论 -
三星s7 的bug android.widget.Editor$SelectionModifierCursorController.isDragAcceleratorActive() 为空
解决中原创 2018-07-07 15:48:39 · 923 阅读 · 2 评论 -
阿里云的第三方推送通道 与融云的推送通道冲突问题
冲突提示一般如下,4.4 和5.0以上报错不太一样,主要是阿里云的第三方通道集成了小米的推送和华为的推送,融云也是小米的推送,结果就冲突了More than one file was found with OS independent path 'miui_push_version'Multiple dex files define Lcom/xiaomi/mipush/sdk/P...原创 2018-04-25 14:07:59 · 2175 阅读 · 1 评论 -
画虚线需要注意的问题
布局中用View是直接显示的,不是addView的直接用,但要注意加一个属性 android:layerType=”software” ,并且虚线高度需要小于View的高度,<View android:layout_width="match_parent" android:layout_marginTop="12dp" android:layout_h原创 2017-12-30 14:29:56 · 515 阅读 · 0 评论