谈一谈安卓的相对布局 之前只会使用·线性布局 所以要多学一个 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/re ...
分类:
移动开发 时间:
2020-04-08 16:21:23
阅读次数:
78
Android 存储目录总结:https://www.jianshu.com/p/9528329d4787 Android内、外存储 易混淆点剖析(/mnt/sdcard、/storage/sdcard0、/storage/emulated/0等区别): https://blog.csdn.net/ ...
分类:
移动开发 时间:
2020-04-08 16:13:17
阅读次数:
83
GitHub地址:https://github.com/kongpf8848/Animation 效果如下: 主要是自定义View继承LottieAnimationView并实现Checkable接口,代码如下: import android.content.Context; import andr ...
分类:
其他好文 时间:
2020-04-08 16:10:30
阅读次数:
253
系统那边给了platform.pk8,shared.x509.pem等文件,现需要转换成.jks文件方便Android studio中编译使用。 记录下如何操作生成.jks 1. 在Android源码目录:android/build/target/product/security/ 找到签名文件“p ...
分类:
移动开发 时间:
2020-04-08 14:57:54
阅读次数:
249
我是跟着《Android第一行代码》写代码的,想写个博来加深印象一点 一、添加依赖库RecyclerView 在app下的build.gradle中的dependencies添加一句:(添加后要sync now) implementation 'androidx.recyclerview:recyc ...
分类:
移动开发 时间:
2020-04-08 13:42:39
阅读次数:
148
今天 学习 android多线程 atomininteger内存模型 以及自己项目的 视频播放功能 目前 对于android一些知识点 大家可以 去看今日头条的 android进阶小刘 这个博主 讲得很好 atomininteger内存模型 是啥 https://blog.csdn.net/fanr ...
分类:
移动开发 时间:
2020-04-08 11:50:26
阅读次数:
92
if (plus.os.name == "Android") { var context = plus.android.importClass("android.content.Context"); var locationManager = plus.android.importClass("an ...
分类:
移动开发 时间:
2020-04-08 11:45:39
阅读次数:
109
##前言前段时间在组内做了一下现有的代码分析,发现很多以前的legacycode多线程的使用都不算是最佳实践,而且坏事的地方在于,刚毕业的学生,因为没有别的参照物,往往会复制粘贴以前的旧代码,这就造成了坏习惯不停的扩散。所以本人就总结分析了一下Android的多线程技术选型,还有应用场景。借着和组内分享的机会也在简书上总结一下。因为自己的技术水平有限,有不对的地方还希望大家能多多指正。这篇文章我会
分类:
移动开发 时间:
2020-04-08 09:50:08
阅读次数:
101
相关资料: https://www.it1352.com/624177.html 1 unit Unit2; 2 3 interface 4 5 uses 6 System.SysUtils, System.Types, System.UITypes, System.Classes, System. ...
分类:
移动开发 时间:
2020-04-08 09:42:13
阅读次数:
92
Overview 绑定适配器负责发出相应的框架调用来设置值。例如,设置属性值就像调用 setText() 方法一样。再比如,设置事件监听器就像调用 setOnClickListener() 方法。 数据绑定库允许您通过使用适配器指定为设置值而调用的方法、提供您自己的绑定逻辑,以及指定返回对象的类型。 ...
分类:
移动开发 时间:
2020-04-08 09:36:32
阅读次数:
348