android教程之hockeyapp捕獲異常示例
package com.example.testhockeyapp;
import net.hockeyapp.android.CrashManager;
import net.hockeyapp.android.CrashManagerListener;
import net.hockeyapp.android.UpdateManager;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;
public class MainActivity extends Activity {
private static final String App_ID = "a7ab0fe5f11edc8afbfbc842ecc38ad7";
String a = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button = (Button) findViewById(R.id.button1);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
a.charAt(23);
}
});
checkForUpdates();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();
checkForCrashes();
}
private void checkForCrashes() {
CrashManager.register(this, App_ID, new CrashManagerListener() {
@Override
public void onCrashesSent() {
super.onCrashesSent();
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(getApplicationContext(),
"Crash data was sent. Thanks!",
Toast.LENGTH_LONG).show();
}
});
}
@Override
public void onCrashesNotSent() {
super.onCrashesNotSent();
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(
getApplicationContext(),
"Crash data failed to sent. Please try again later.",
Toast.LENGTH_LONG).show();
}
});
}
});
}
private void checkForUpdates() {
// Remove this for store builds!
UpdateManager.register(this, App_ID);
}
}
相關文章
30條android項目開發(fā)技巧與經(jīng)驗總結
本文為大家總結了30條android項目開發(fā)技巧與經(jīng)驗,,需要的朋友可以參考下2018-04-04Android基于widget組件實現(xiàn)物體移動/控件拖動功能示例
這篇文章主要介紹了Android基于widget組件實現(xiàn)物體移動/控件拖動功能,結合實例形式分析了widget組件在桌面應用中的事件響應與屬性動態(tài)操作相關實現(xiàn)技巧,需要的朋友可以參考下2016-10-10Android?Jetpack組件Navigation導航組件的基本使用
本篇主要簡單介紹了一下?Navigation?是什么?以及使用它的流程是什么,并且結合實際案例?操作了一番,Navigation?還有很多其他用法,如條件導航、嵌套圖、過度動畫?等等功能?有機會再操作,需要的朋友可以參考下2022-06-06android使用Socket通信實現(xiàn)多人聊天應用
這篇文章主要為大家詳細介紹了android使用Socket通信實現(xiàn)多人聊天應用,具有一定的參考價值,感興趣的小伙伴們可以參考一下2018-03-03