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);
}
}
相關(guān)文章
30條android項(xiàng)目開發(fā)技巧與經(jīng)驗(yàn)總結(jié)
本文為大家總結(jié)了30條android項(xiàng)目開發(fā)技巧與經(jīng)驗(yàn),,需要的朋友可以參考下2018-04-04Android 加載assets中的資源文件實(shí)例代碼
這篇文章主要介紹了Android 加載assets中的資源文件實(shí)例代碼的相關(guān)資料,這里附有實(shí)例代碼,需要的朋友可以參考下2017-01-01Android基于widget組件實(shí)現(xiàn)物體移動/控件拖動功能示例
這篇文章主要介紹了Android基于widget組件實(shí)現(xiàn)物體移動/控件拖動功能,結(jié)合實(shí)例形式分析了widget組件在桌面應(yīng)用中的事件響應(yīng)與屬性動態(tài)操作相關(guān)實(shí)現(xiàn)技巧,需要的朋友可以參考下2016-10-10Android?Jetpack組件Navigation導(dǎo)航組件的基本使用
本篇主要簡單介紹了一下?Navigation?是什么?以及使用它的流程是什么,并且結(jié)合實(shí)際案例?操作了一番,Navigation?還有很多其他用法,如條件導(dǎo)航、嵌套圖、過度動畫?等等功能?有機(jī)會再操作,需要的朋友可以參考下2022-06-06Android 動畫之ScaleAnimation應(yīng)用詳解
本節(jié)講解ScaleAnimation 動畫在應(yīng)用中的實(shí)現(xiàn),有需要的朋友可以參考下2012-12-12android使用Socket通信實(shí)現(xiàn)多人聊天應(yīng)用
這篇文章主要為大家詳細(xì)介紹了android使用Socket通信實(shí)現(xiàn)多人聊天應(yīng)用,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-03-03