コード例 #1
0
        public void FormDidFailLoading()
        {
            var errorString = "Unable to load the form";
            var err         = new UBError(errorString);
            var aResponse   = new UBFeedbackResult(err);

            UsabillaXamarin.Instance.FormCallback(aResponse);
        }
コード例 #2
0
 public override void OnReceive(Context context, Intent intent)
 {
     if (intent != null)
     {
         FeedbackResult parcelable = (FeedbackResult)intent.GetParcelableExtra(FeedbackResult.IntentFeedbackResult);
         var            aResponse  = new UBFeedbackResult(parcelable);
         UsabillaXamarin.Instance.FormCallback(aResponse);
     }
     activity.Finish();
 }