mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-29 11:17:07 +00:00
23 lines
No EOL
569 B
C#
23 lines
No EOL
569 B
C#
using System.Reflection;
|
|
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();
|
|
}
|
|
|
|
}
|
|
} |