如果没有对生成的apk进行自定义,那么Android studio默认生成的apk的名字一般默认是app-debug.apk,app-release.apk,这样的命名实在是太没有辨识度了。打包好后还需要重新命名,不胜其烦啊! 自定义方法:在build.gradle中添加如下配置即可 android { compileSdkVersion 30 buildToolsVersion "30.0.3" ...... android.applicationVariants.all { variant -> variant.outputs.all { //在这里修改apk文件名 outputFileName = "Floating-${variant.name}-v${variant.versionName}.apk" } } } 最终生成:Floating-debug-v1.0.apk
Android Studio支持预览Markdown文件,但是没开需要手动配置一下 In the Android Studio: Find action (ctrl + shift + A / command + shift + A) Search for Choose Boot Java Runtime for the IDE Select the latest version in the "New:" dropdown - e.g. 11.0.12+7-b1504.27 JetBrains Runtime with JCEF // 这里我选择的最新版本即可。 OK Restart
图片文件转为Bitmap对象 String filePath=""; Bitmap bitmap=BitmapFactory.decodeFile(filePath); 如果图片过大,可能导致Bitmap对象装不下图片 解决办法: String filePath=""; Bitmap bitmap=BitmapFactory.decodeFile(filePath,getBitmapOption(2)); //将图片的长和宽缩小味原来的1/2 private Options getBitmapOption(int inSampleSize){ System.gc(); BitmapFactory.Options options = new BitmapFactory.Options(); options.inPurgeable = true; options.inSampleSize = inSampleSize; return options; } Bitmap对象保存味图片文件 public void saveBitmapFile(Bitmap bitmap){ File f....
创建证书 点击 Main Menu | Build | Generate Signed Bundle / APK… 好了!