Cannot find System Java Compiler. Ensure that you have installed a JDK (not just a JRE) and configured your JAVA_HOME system variable to point to the according directory.
字数143阅读64评论0喜欢0
问题描述:
下载github上的项目,Android Studio报以下错,但是明明配置jdk环境,新建项目也能识别jdk环境
Error:Execution failed for task ':...:compileReleaseJava'. > Cannot find System Java Compiler. Ensure that you have installed a JDK (not just a JRE) and configured your JAVA_HOME system variable to point to the according directory.
解决方案:
gradle版本过低,设置高版本的gradle就可以了。
如果不知道具体是哪个版本,可以直接复制新建项目的gradle,例如我的classpath 'com.android.tools.build:gradle:2.1.0'
android常见bug及解决方案总结
不确定对象在使用前先做是否为空判断
特别注意:fragment getActivity为null处理
使用索引值获取对象值时,需判断索引值是否小于数据源大小 example:
if(mData!=null&&mData.size()!=0&&i
ListView或RecycleView 更新数据源命令不同步
保证设置数据源和执行adapter.notifyDataSetChanged在同一个线程并且在Ui线程 example:
adapter.setData(mData);adapter.notifyDataSetChanged();
Windows无页面附加(Unable to add window.....is your activity running?)
执行windows窗体Dialog或PopupWindow时,先判断当前页面是否销毁,若页面还在则可以执行窗体显示操作,可以通过全局变量或activity自定义堆栈管理判断当前页面是否销毁,在onDestory里面做关闭窗体操作并置空 example:
@OverrideprotectedvoidonDestroy() {if(mDialog!=null&&mDialog.isShowing()){mDialog.dismiss(); mDialog=null; }super.onDestroy();}
升级sqlite方法里面添加字段处理,此时记得加入try catch处理方式,防止出现崩溃现象。 example:
FinalDb.DaoConfigdaoConfig=newFinalDb.DaoConfig();daoConfig.setContext(this);daoConfig.setDbName(ChatDao.DATABASE_NAME);daoConfig.setDebug(true);daoConfig.setDbVersion(ChatDao.DATABASE_VERSION_CODE);daoConfig.setDbUpdateListener(newFinalDb.DbUpdateListener() { @OverridepublicvoidonUpgrade(SQLiteDatabasedb,intoldVersion,intnewVersion) {// 当之前版本的数据升级到新版版本的数据,我们需要给对应表增加新的字段try{// 添加字段has_appraised字段db.execSQL(ChatDao.VERSION_3_SQL_ADD_COLUMN_HAS_PRAISED); }catch(Exception e){e.printStackTrace(); }try{// 添加字段receiveDate字段db.execSQL(ChatDao.VERSION_4_SQL_ADD_CLUMN_RECEIVE_DATE); }catch(Exception e){e.printStackTrace(); } } });FinalDb.create(daoConfig);
处理bitmap资源不得当造成(压缩或者变换得到新bitmap)
采用try catch处理方式,若出现异常再做压缩,期间采用弱引用方式处理。 example:
WeakReferencebitmapWeakReference;// First decode with inJustDecodeBounds=true to check dimensionsfinalBitmapFactory.Optionsoptions=newBitmapFactory.Options();try{options.inJustDecodeBounds=true;BitmapFactory.decodeFileDescriptor(fd,null, options);// Calculate inSampleSizeoptions.inSampleSize=calculateInSampleSize(options, reqWidth, reqHeight);// Decode bitmap with inSampleSize setoptions.inJustDecodeBounds=false;// 弱引用处理图片 add leibing 2016/12/8bitmapWeakReference=newWeakReference(BitmapFactory.decodeFileDescriptor(fd,null, options));if(bitmapWeakReference!=null&&bitmapWeakReference.get()!=null)returnbitmapWeakReference.get(); }catch(OutOfMemoryError ex){// 压缩图片指定值 add by leibing 2016/12/8options.inSampleSize=options.inSampleSize+4;options.inJustDecodeBounds=false;// 弱引用处理图片 add leibing 2016/12/8bitmapWeakReference=newWeakReference(BitmapFactory.decodeFileDescriptor(fd,null, options));if(bitmapWeakReference!=null&&bitmapWeakReference.get()!=null)returnbitmapWeakReference.get(); }
各种内存泄漏问题造成,主要有以下:
1、将该属性的引用方式改为弱引用; 2、如果传入Context,使用ApplicationContext; example 泄漏代码片段
// singtonprivatestaticInstanceClass instance;// activity referprivateContext mContext;/*** set activity refer*@authorleibing* @createTime 2016/12/9* @lastModify 2016/12/9*@parammContext activity refer*@return*/publicvoidsetRefer(ContextmContext){this.mContext=mContext; }/*** constructor*@authorleibing* @createTime 2016/12/9* @lastModify 2016/12/9*@param*@return*/privateInstanceClass(){ }/*** sington*@authorleibing* @createTime 2016/12/9* @lastModify 2016/12/9*@param*@return*/publicstaticInstanceClassgetInstance(){if(instance==null){synchronized(InstanceClass.class){if(instance==null) instance=newInstanceClass(); } }returninstance; }
Solution:使用WeakReference
// singtonprivatestaticInstanceClass instance;// activity referprivateWeakReferencemContextWeakRef;/*** set activity refer*@authorleibing* @createTime 2016/12/9* @lastModify 2016/12/9*@parammContext activity refer*@return*/publicvoidsetRefer(ContextmContext){ mContextWeakRef=newWeakReference(mContext); }/*** constructor*@authorleibing* @createTime 2016/12/9* @lastModify 2016/12/9*@param*@return*/privateInstanceClass(){ }/*** sington*@authorleibing* @createTime 2016/12/9* @lastModify 2016/12/9*@param*@return*/publicstaticInstanceClassgetInstance(){if(instance==null){synchronized(InstanceClass.class){if(instance==null) instance=newInstanceClass(); } }returninstance; }
1、将内部类变成静态内部类; 2、如果有强引用Activity中的属性,则将该属性的引用方式改为弱引用; 3、在业务允许的情况下,当Activity执行onDestory时,结束这些耗时任务; example 泄漏代码片段
publicclassInnerClassActivityextendsActivity{ @OverrideprotectedvoidonCreate(BundlesavedInstanceState) {super.onCreate(savedInstanceState);// start a thread to worknewInnerThread().start(); }/*** @interfaceName: InnerThread* @interfaceDescription: custom thread*@author: leibing* @createTime: 2016/12/9*/classInnerThreadextendsThread{ @Overridepublicsynchronizedvoidstart() {super.start(); } }}
Solution:使用WeakReference + static
publicclassInnerClassActivityextendsActivity{// 图片资源privateDrawable mDrawable;// inner threadprivateInnerThread mInnerThread; @OverrideprotectedvoidonCreate(BundlesavedInstanceState) {super.onCreate(savedInstanceState);// init drawablemDrawable=getResources().getDrawable(R.drawable.ic_launcher);// start a thread to workmInnerThread=newInnerThread(mDrawable);mInnerThread.start(); } @OverrideprotectedvoidonDestroy() {if(mInnerThread!=null)mInnerThread.setIsRun(false);super.onDestroy(); }/*** @interfaceName: InnerThread* @interfaceDescription: custom thread*@author: leibing* @createTime: 2016/12/9*/staticclassInnerThreadextendsThread{// weak refpublicWeakReferencemDrawableWeakRef;// is runprivateboolean isRun=true;/*** constructor*@authorleibing* @createTime 2016/12/9* @lastModify 2016/12/9*@parammDrawable 图片资源(存在对页面的引用风险)*@return*/publicInnerThread(DrawablemDrawable){ mDrawableWeakRef=newWeakReference(mDrawable); }/*** set is run*@authorleibing* @createTime 2016/12/9* @lastModify 2016/12/9*@paramisRun*@return*/publicvoidsetIsRun(booleanisRun){this.isRun=isRun; } @Overridepublicvoidrun() {while(isRun){// do worktry{// sleep one secondThread.sleep(1000); }catch(InterruptedException e) {e.printStackTrace(); } } } @Overridepublicsynchronizedvoidstart() {super.start(); } }}
1、使用ApplicationContext代替ActivityContext,因为ApplicationContext会随着应用程序的存在而存在,而不依赖于activity的生命周期; 2、对Context的引用不要超过它本身的生命周期,慎重的对Context使用“static”关键字。Context里如果有线程,一定要在onDestroy()里及时停掉。 example 泄漏代码片段
publicclassDrawableActivityextendsActivity{// static drawableprivatestaticDrawable leakDrawable; @OverrideprotectedvoidonCreate(Bundlestate) {super.onCreate(state); TextView label=newTextView(this);// init drawableif(leakDrawable==null) { leakDrawable=getResources().getDrawable(R.drawable.ic_launcher); }// view set drawablelabel.setBackgroundDrawable(leakDrawable);setContentView(label); }}
Solution:
publicclassDrawableActivityextendsActivity{// static drawableprivatestaticDrawable leakDrawable; @OverrideprotectedvoidonCreate(Bundlestate) {super.onCreate(state); TextView label=newTextView(this);// init drawableif(leakDrawable==null) { leakDrawable=getApplicationContext().getResources().getDrawable(R.drawable.ic_launcher); }// view set drawablelabel.setBackgroundDrawable(leakDrawable);setContentView(label); }}
1、可以把Handler类放在单独的类文件中,或者使用静态内部类便可以避免泄露; 2、如果想在Handler内部去调用所在的Activity,那么可以在handler内部使用弱引用的方式去指向所在Activity.使用Static + WeakReference的方式来达到断开Handler与Activity之间存在引用关系的目的。 example 泄漏代码片段
publicclassHandlerActivityextendsActivity{// custom handlerprivateCustomHandler mHandler; @OverrideprotectedvoidonCreate(BundlesavedInstanceState) {super.onCreate(savedInstanceState);// init custom handlermHandler=newCustomHandler();// sendMsgMessage msg=newMessage();mHandler.sendMessage(msg); }/*** @interfaceName: CustomHandler* @interfaceDescription: custom handler*@author: leibing* @createTime: 2016/12/9*/classCustomHandlerextendsHandler{ @OverridepublicvoidhandleMessage(Messagemsg) {super.handleMessage(msg); } }}
Solution(static + weakRef):
publicclassHandlerActivityextendsActivity{// custom handlerprivateCustomHandler mHandler; @OverrideprotectedvoidonCreate(BundlesavedInstanceState) {super.onCreate(savedInstanceState);// init custom handlermHandler=newCustomHandler(this);// sendMsgMessage msg=newMessage();mHandler.sendMessage(msg); }/*** @interfaceName: CustomHandler* @interfaceDescription: custom handler*@author: leibing* @createTime: 2016/12/9*/staticclassCustomHandlerextendsHandler{// weak refprivateWeakReferencemContextWeakRef;/*** constructor*@authorleibing* @createTime 2016/12/9* @lastModify 2016/12/9*@parammContext activity ref*@return*/publicCustomHandler(ContextmContext){ mContextWeakRef=newWeakReference(mContext); } @OverridepublicvoidhandleMessage(Messagemsg) {super.handleMessage(msg);if(mContextWeakRef!=null&&mContextWeakRef.get()!=null){// do work} } }}
1、使用ApplicationContext代替ActivityContext; 2、在Activity执行onDestory时,调用反注册;
Cursor,Stream没有close,View没有recyle;
资源性对象比如(Cursor,File文件等)往往都用了一些缓冲,我们在不使用的时候,应该及时关闭它们,以便它们的缓冲及时回收内存。它们的缓冲不仅存在于 java虚拟机内,还存在于java虚拟机外。如果我们仅仅是把它的引用设置为null,而不关闭它们,往往会造成内存泄漏。因为有些资源性对象,比如SQLiteCursor(在析构函数finalize(),如果我们没有关闭它,它自己会调close()关闭),如果我们没有关闭它,系统在回收它时也会关闭它,但是这样的效率太低了。因此对于资源性对象在不使用的时候,应该调用它的close()函数,将其关闭掉,然后才置为null. 在我们的程序退出时一定要确保我们的资源性对象已经关闭。
在Activity退出之前,将集合里的东西clear,然后置为null,再退出程序。
privateListmData;publicvoidonDestory() {if(mData!=null) {mData.clear(); mData=null; }}
为webView开启另外一个进程,通过AIDL与主线程进行通信,WebView所在的进程可以根据业务的需要选择合适的时机进行销毁,从而达到内存的完整释放。
首先判断类型转换前数据是否符合转化后的数据再做处理。 example: 字符串转整型数字 首先判断字符串是否为数字字符串,然后再转换,此时最好加上try catch处理,防止崩溃。
以上是笔者在项目中遇到的常见bug以及解决方案,如有不足,请补充。
网友评论