Skip to content

Instantly share code, notes, and snippets.

View gerryhigh's full-sized avatar

Gerry High gerryhigh

View GitHub Profile

Keybase proof

I hereby claim:

  • I am gerryhigh on github.
  • I am gerryhigh (https://keybase.io/gerryhigh) on keybase.
  • I have a public key whose fingerprint is 8F1C BF84 53F5 FCF6 C31C 932A F545 E201 CCCF 76A3

To claim this, I am signing this object:

@gerryhigh
gerryhigh / gist:8817463
Created February 5, 2014 04:32
Wrapper classes over BTProgressHUD and AndHUD to provide a unified interface
using System;
using Android.App;
using AndroidHUD;
namespace XHUD
{
public enum MaskType
{
// None = 1,
@gerryhigh
gerryhigh / gist:7894859
Last active December 30, 2015 22:29
Crash in Trip Wallet
Dec 10 11:44:19 TripWallet[8045] <Warning>: Exception: System.NullReferenceException: Object reference not set to an instance of an object
at TravelBudget.StyledExpandableDateElement.Selected (MonoTouch.Dialog.DialogViewController dvc, MonoTouch.UIKit.UITableView tableView, MonoTouch.Foundation.NSIndexPath path) [0x00000] in <filename unknown>:0
at MonoTouch.Dialog.DialogViewController.Selected (MonoTouch.Foundation.NSIndexPath indexPath) [0x00000] in <filename unknown>:0
at MonoTouch.Dialog.DialogViewController+Source.RowSelected (MonoTouch.UIKit.UITableView tableView, MonoTouch.Foundation.NSIndexPath indexPath) [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) MonoTouch.UIKit.UIApplication:UIApplicationMain (int,string[],intptr,intptr)
at MonoTouch.UIKit.UIApplication.Main (System.String[] args, System.String principalClassName, System.String delegateClassName) [0x00000] in <filename unknown>:0
at TravelBudget.Application.Main (System.String[] args) [0x00000] in <filena
@gerryhigh
gerryhigh / gist:7858437
Created December 8, 2013 14:42
Example of SMS intent broken on Kitkat until Xamarin can support API 19; this will spin with an hourglass once it launches google hangouts
Intent intent = new Intent(Android.Content.Intent.ActionView);
intent.PutExtra("sms_body", "some text");
intent.SetData(Android.Net.Uri.Parse("sms:"));
StartActivity(intent);