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 BlurTransformation : Java.Lang.Object, ITransformation | |
{ | |
/** | |
* Max blur Radius supported by the Renderscript library | |
**/ | |
protected static int MaxRadius = 25; | |
/** | |
* Min blur Radius supported by the Renderscript library | |
**/ | |
protected static int MinRadius = 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
private class Target : Java.Lang.Object, ITarget | |
{ | |
// Bitmap PlaceHolder { get; set; } | |
private ImageView View { get; set; } | |
// Bitmap ErrorHolder { get; set; } | |
private Bitmap Overlay { get; set; } | |
public Target(ImageView view, Bitmap overlay) | |
{ |
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 SpaceItemDecoration : RecyclerView.ItemDecoration | |
{ | |
private readonly bool _addSpaceFirstItem; | |
private readonly bool _addSpaceLastItem; | |
private readonly int _space; | |
public SpaceItemDecoration(int space, bool addSpaceFirstItem, bool addSpaceLastItem) | |
{ | |
_space = space; | |
_addSpaceFirstItem = addSpaceFirstItem; |
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 GridSpacingDecoration : RecyclerView.ItemDecoration | |
{ | |
/// <summary> | |
/// The m space | |
/// </summary> | |
private readonly int _mSpace; | |
/// <summary> | |
/// Initializes a new instance of the <see cref="GridSpacingDecoration"/> class. | |
/// </summary> |
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
/* | |
* Ported by Jagadeesh Govindaraj (@jaganjan) | |
*Copyright 2015 serso aka se.solovyev | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* |
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
{ | |
"locked": false, | |
"version": 2, | |
"targets": { | |
"DNX,Version=v4.5.1": { | |
"FubarCoder.RestSharp.Portable/3.1.0": { | |
"type": "package", | |
"dependencies": { | |
"FubarCoder.RestSharp.Portable.HttpClient": "3.1.0" | |
} |
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 class GenericAuthhelper | |
{ | |
/// <summary> | |
/// Gets or sets the handle authentication completed. | |
/// </summary> | |
/// <value>The handle authentication completed.</value> | |
private static EventHandler<AuthenticatorCompletedEventArgs> HandleAuthCompleted { get; set; } | |
/// <summary> | |
/// Gets or sets the handle error handler. | |
/// </summary> |
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.Collections.Generic; | |
using System.Linq; | |
using System.Net; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Android.App; | |
using Android.Content; | |
using Android.OS; | |
using Android.Runtime; |
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 RoundedCornersTransformation : Java.Lang.Object, ITransformation | |
{ | |
public enum CornerType | |
{ | |
All, | |
TopLeft, | |
TopRight, | |
BottomLeft, | |
BottomRight, | |
Top, |