mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-26 19:34:49 +00:00
22 lines
No EOL
543 B
C#
22 lines
No EOL
543 B
C#
using Android.App;
|
|
using Android.Content;
|
|
using Android.Widget;
|
|
|
|
namespace MonoStockPortfolio.Framework
|
|
{
|
|
public static class ActivityExtensions
|
|
{
|
|
public static void EndActivity(this Activity @this)
|
|
{
|
|
var intent = new Intent();
|
|
@this.SetResult(Result.Ok, intent);
|
|
@this.Finish();
|
|
}
|
|
|
|
public static void LongToast(this Activity @this, string message)
|
|
{
|
|
Toast.MakeText(@this, message, ToastLength.Long).Show();
|
|
}
|
|
|
|
}
|
|
} |