コード例 #1
0
ファイル: PastHistoryDetail.cs プロジェクト: borain89vn/demo2
		private void startViewInvoice(InvoiceDTO invoice){
			Intent intent = new Intent(this, typeof(ViewWebInvoice));
			intent.PutExtra(constants.pPathInvoice, "https://docs.google.com/gview?embedded=true&url=" + HttpConstants.BASE_URL + invoice.url);
			StartActivity(intent);
		}
コード例 #2
0
ファイル: PastHistoryDetail.cs プロジェクト: borain89vn/demo2
		public void onViewInvoiceFail ()
		{
			this.RunOnUiThread (() => {
				progressDialogParent.Hide ();
				this.invoice =  null;
			});
		}
コード例 #3
0
ファイル: PastHistoryDetail.cs プロジェクト: borain89vn/demo2
		public void onViewInvoiceSuccess (InvoiceDTO invoice)
		{
			this.RunOnUiThread (() => {
				progressDialogParent.Hide ();
				this.invoice = invoice;
				startViewInvoice(invoice);
			});
		}
コード例 #4
0
ファイル: PastHistoryDetail.cs プロジェクト: borain89vn/demo2
		public void onSendingViewInvoice ()
		{
			this.RunOnUiThread (() => {
				progressDialogParent.Show ();
				this.invoice =  null;
			});
		}