
Android
啥都不会可咋办
这个作者很懒,什么都没留下…
展开
-
Android 环境下的 AES 加密实现
原文链接:http://www.vontroy.com/2020/03/11/android-aes/问题描述在 Android 早期的版本(Android N以前)中, 密钥生成过程类似如下的形式:public KeyGenerator keyGen(byte[] strKey) { try { KeyGenerator kgen = KeyGenerator.getInstance("AES"); SecureRandom secureRandom = nu原创 2020-12-24 12:33:26 · 562 阅读 · 0 评论 -
解决 Android Studio 中 sync 速度慢问题
repositories阿里云 maven 仓库:https://maven.aliyun.com/mvn/view// Top-level build file where you can add configuration options common to all sub-projects/modules.buildscript { repositories { maven { url 'https://maven.aliyun.com/repository/jcent原创 2020-06-27 15:02:38 · 3395 阅读 · 0 评论 -
Gradle 中央仓库URL配置
配置远程中央仓库镜像repositories { maven { url "http://repo2.maven.org/maven2/" } }}配置本地仓库镜像repositories { maven { url "g:/abc" } }}...原创 2019-06-03 12:19:41 · 2877 阅读 · 0 评论 -
Android | 使用BottomNavigationView 作为底部导航时会遮挡Fragment解决方案
在使用BottomNavigationView作为底部导航时导航栏一直浮在展示Fragment的FrameLayout底部上层(想要的效果是FrameLayout和BottomNavigationView按vertical的orientation排列)最终代码:<?xml version="1.0" encoding="utf-8"?><RelativeLayout xml...原创 2019-10-11 11:41:49 · 3836 阅读 · 0 评论