com.hadoopz.MyDroidLib.exceptions.LocalFileHandler Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2017 jw362j.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hadoopz.MyDroidLib.exceptions;
import android.content.Context;
import android.os.Looper;
import android.widget.Toast;
import com.mycomm.IProtocol.log.UniversalLogHolder;
/**
* 本地异常处理类
*
* @author blue
*
*/
public class LocalFileHandler extends BaseExceptionHandler {
private final Context context;
public LocalFileHandler(Context context) {
this.context = context;
}
/**
*
* 自定义错误处理,收集错误信息 发送错误报告等操作均在此完成. 开发者可以根据自己的情况来自定义异常处理逻辑
*
* @param ex
* @return true:如果处理了该异常信息;否则返回false
*
*/
@Override
public boolean handleException(final Throwable ex) {
if (ex == null) {
return false;
}
new Thread() {
@Override
public void run() {
Looper.prepare();
Toast.makeText(context, "Sorry,application is stoped!", Toast.LENGTH_LONG).show();
Looper.loop();
}
}.start();
saveLog(ex);
return true;
}
private void saveLog(Throwable ex) {
UniversalLogHolder.e("LocalFileHandler",ex.getMessage());
}
}