This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Activity(Label = "Awesome!")] | |
| public class ValidationView | |
| : MvxActivity<AwesomeViewModel> | |
| { | |
| protected override void OnCreate(Bundle bundle) | |
| { | |
| base.OnCreate(bundle); | |
| RequestWindowFeature(WindowFeatures.ActionBar); | |
| SetContentView(Resource.Layout.awesome_layout); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 28im.com | |
| 4byte.cn | |
| acnenomor.com | |
| adtandroid.blogspot.com | |
| androidstackoverflow.blogspot.com | |
| askmequest.gq | |
| besttopics.net | |
| bloglovin.com | |
| c9q.net | |
| codebaum.wordpress.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class MyActivity : Activity | |
| { | |
| private GoogleMap _map; | |
| private HorizontalScrollView _hsv; | |
| protected override void OnCreate(Bundle bundle) | |
| { | |
| base.OnCreate(bundle); | |
| SetContentView(Resource.Layout.rtc); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static void TryRequestWhenInUseAuthorization(this CLLocationManager locationManager) | |
| { | |
| if (locationManager.RespondsToSelector(new Selector("requestWhenInUseAuthorization"))) | |
| locationManager.RequestWhenInUseAuthorization(); | |
| } | |
| public static void TryRequestAlwaysAuthorization(this CLLocationManager locationManager) | |
| { | |
| if (locationManager.RespondsToSelector(new Selector("requestAlwaysAuthorization"))) | |
| locationManager.RequestAlwaysAuthorization(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| using Android.Gms.Maps; | |
| using Android.Gms.Maps.Model; | |
| using Android.Locations; | |
| using Android.OS; | |
| namespace RunForYourLife | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class DummyFragment : Fragment | |
| { | |
| public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) | |
| { | |
| var view = inflater.Inflate(Resource.Layout.dummy_frag, container, false); | |
| var tv = view.FindViewById<TextView>(Resource.Id.textView1); | |
| tv.Text = "" + Arguments.GetInt("number", -1); | |
| return view; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| static Dictionary<string, string> QueryToKeyValueDictionary(string url) | |
| { | |
| return | |
| url.Substring(url.IndexOf('?') + 1) | |
| .Split('&') | |
| .Select(pair => pair.Split('=')) | |
| .ToDictionary(val => val[0], val => Uri.UnescapeDataString(val[1])); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using System.Threading.Tasks; | |
| using Microsoft.ServiceBus.Notifications; | |
| namespace Cheesebaron.Extensions | |
| { | |
| public static class NotificationHubClientExtensions | |
| { | |
| public static async Task<NotificationOutcome> SendNotificationAsync(this NotificationHubClient client, NotificationHubClientPlatform platform, | |
| string payload, string tagExpression) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Activity(Label = "DialogActivity", Theme = "@style/PopupTheme")] | |
| public class DialogActivity : Activity | |
| { | |
| protected override void OnCreate (Bundle bundle) | |
| { | |
| base.OnCreate (bundle); | |
| ShowAsPopup(this, Resource.Layout.Main); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var registrationId = string.Empty; | |
| var allRegistrations = await hubClient.GetAllRegistrationsAsync(10); | |
| foreach (var registration in allRegistrations) | |
| { | |
| switch (deviceType) | |
| { | |
| case NotificationSubscriptionV1.DeviceTypes.Android: | |
| { | |
| var reg = registration as GcmRegistrationDescription; |