AS
Coder君
Live for coding
展开
-
AndroidStudio常用快捷键
1、全局替换:ctrl+shif+R参考链接:这份Android Studio快捷键大全,让你的开发效率快10倍原创 2019-12-19 16:06:05 · 208 阅读 · 0 评论 -
profiler分析网络响应数据显示乱码如何解决
解决方案:android studio -> help ->Edit Custom VM options在这里加一个JVM启动参数-Dfile.encoding=UTF-8原创 2019-09-26 16:36:50 · 541 阅读 · 0 评论 -
No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android问题描述解决方法问题描述Android Studio更新到3.4.2后编译会报错:No toolchains found in the NDK toolchains folder for ABI with pre...原创 2019-07-22 12:06:28 · 281 阅读 · 0 评论 -
java.lang.NoSuchFieldError: No static field
当你在Android项目中引入一个第三方library时,报了如下错误:java.lang.NoSuchFieldError: No static field...主要原因是因为第三方库与项目中的布局或资源文件同名发生了冲突,导致无法运行。那么按我说的做:尝试一:clean项目-》rebuild项目-》卸载之前安装的app-》重新安装如果仍然报错,进行下一步尝试。尝试二:错误信息会指向某一个布局文件原创 2016-12-13 13:54:48 · 13254 阅读 · 2 评论 -
UI分析神器-uiautomatorviewer+Android Studio
当我们拿到了别人的app源码时,如何快速熟悉代码?如何看着UI来熟悉代码?今天Coder哥就传授给大家一个终极神器—uiautomatorviewer!话不多说,show me the code!Step 1:查找Android Sdk->tools->uiautomaatorviewer.bat 并点击,点击后会出现一个console黑窗口,使用时不要关掉。Step 2:uiautomaatorv原创 2016-11-19 12:29:12 · 18394 阅读 · 0 评论 -
AS Error:File xxx specified for property 'resourceFile' does not exist
升级Android Studio 2.2之后,编译过程出现问题:Error:A problem was found with the configuration of task ':app:packageDebug'.> File xxx specified for property 'resourceFile' does not exist.解决方法:将shrinkResource设置为fals原创 2016-09-23 14:58:20 · 3043 阅读 · 3 评论 -
Android Studio如何用release签名进行debug调试
当我们在做微信、微博sdk分享的时候调试非常麻烦,因为要使用对应的签名版本才能调用sdk成功。所以今天就教大家如何用release签名进行debug调试。我们只需要在moudle的build.gradle中添加一些代码即可。android { compileSdkVersion 23 buildToolsVersion '23.0.3' defaultConfig {原创 2016-05-03 16:25:48 · 7766 阅读 · 0 评论 -
Errors while building APK. You can find the errors in the 'Messages' view.
最近在用android studio打包签名apk时遇到了一个问题,经过查找资料,顺利解决。问题一:Messages报错如下:Error:Execution failed for task ':app:lintVitalRelease'.> Lint found fatal errors while assembling a release target.To proceed, either f原创 2016-04-30 09:51:12 · 43702 阅读 · 8 评论 -
Cocos2dx 3.x的android studio项目之间.so库、资源移植
有时候,我们可能需要把Cocos2dx的proj.android-studio项目中编译好的.so库移植到我们某个android studio项目中进行使用,本文将详细介绍整个移植过程。图1是cocos2dx项目中AS平台的工程。通过编译(cocos compile -p android –android-studio),已经产生了.so库文件。现在,我想将A中产生的动画效果或是资源转移到我已有的a原创 2016-04-15 14:43:32 · 10607 阅读 · 6 评论 -
如何使用Android Studio中的git插件
为了在Android studio中直接使用Git进行代码管理,我们需要使用其自带的git插件。1、点击进入:如何使用AS中的Git插件进行代码管理—代码提交2、如何使用AS中的Git插件进行代码管理—代码update到本地] Android Studio上方工具栏:VCS—》Update Project3、如何将代码git到本地(将项目checkout下来) (1)、随便打开一个现有的Andr转载 2016-03-21 10:03:25 · 2144 阅读 · 0 评论