public override View GetPropertyWindowLayout(Android.Content.Context context) { if (IsTabletDevice(context)) { return(null); } else { DigitalGauge_Mobile mobile = new DigitalGauge_Mobile(); return(mobile.GetPropertyWindowLayout(context)); } }
public override View GetSampleContent(Android.Content.Context con) { if (IsTabletDevice(con)) { DigitalGauge_Tab tab = new DigitalGauge_Tab(); return(tab.GetSampleContent(con)); } else { DigitalGauge_Mobile mobile = new DigitalGauge_Mobile(); return(mobile.GetSampleContent(con)); } }