@ReportsCrashes(formKey = "",mailTo = "my@email.de",mode = ReportingInteractionMode.DIALOG,//resToastText = R.string.crash_toast_text,// optional,displayed as soon as the crash occurs,before collecting data which can take a few seconds resDialogText = R.string.crash_dialog_text,resDialogIcon = androID.R.drawable.ic_dialog_info,//optional. default is a warning sign resDialogTitle = R.string.crash_dialog_Title,// optional. default is your application name resDialogCommentPrompt = R.string.crash_dialog_comment_prompt,// optional. when defined,adds a user text fIEld input with this text resource as a label resDialogokToast = R.string.crash_dialog_ok_toast // optional. displays a Toast message when the user accepts to send a report.)public class AttachApplication extends Application implements OnSharedPreferencechangelistener{
这工作正常,但我在我的应用程序中有按钮,用户可以手动发送错误报告.为此,我想更改模式,以便只发送一封电子邮件而不是一个Dialog.
public voID startSendErrorAction(VIEw vIEw) { Log.d( TAG,"sending error to srs" ); ACRAConfiguration config = ACRA.getConfig(); int prevDialogTitle = config.resDialogTitle(); int prevDialogText = config.resDialogText(); config.setResDialogTitle( R.string.manual_error_Title ); config.setResDialogText( R.string.manual_error_text ); ACRA.setConfig( config ); ACRA.getErrorReporter().handleException(null); config.setResDialogText( prevDialogText ); config.setResDialogTitle( prevDialogTitle ); ACRA.setConfig( config );}
我试图只更改对话框的文本和标题,但这不起作用.它始终使用注释中配置的那些.
是否有可能覆盖这些值?
谢谢
以上是内存溢出为你收集整理的如何在Android中覆盖ACRA的设置全部内容,希望文章能够帮你解决如何在Android中覆盖ACRA的设置所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)