-
共有のリンクを取得する
https://drive.google.com/open?id=0B0J_dD7fVlIJdGc4a1NPbTJjYW8 -
共有のリンクのURLを変更する
open?
となっている部分をuc?export=view&
に変更する -
Markdownに挿入する
![◯◯◯◯](https://drive.google.com/uc?export=view&id=0B0J_dD7fVlIJdGc4a1NPbTJjYW8)
*◯◯◯◯の部分は画像が取得できないときに表示しておく文字
This file contains 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
パッケージのインストール | |
adb install [パッケージ名].apk |
This file contains 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 float xx; // a | |
public float yx; // b | |
public float xy; // c | |
public float yy; // d | |
public float x0; // tx | |
public float y0; // ty |
This file contains 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 CoreGraphics; | |
using Foundation; | |
using UIKit; | |
namespace Repro | |
{ | |
[Verify (ConstantsInterfaceAssociation)] | |
partial interface Constants | |
{ | |
// extern double ReproVersionNumber; |
This file contains 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 Xamarin.Forms; | |
// CustomImageのレンダラーをCustomImageRendererに変更する宣言 | |
[assembly:ExportRenderer(typeof(CustomImage.CustomImage), typeof(CustomImage.iOS.CustomImageRenderer))] | |
namespace CustomImage.iOS | |
{ | |
/// <summary> | |
/// Imageに対応した、ImageRendererを継承したクラスをカスタムレンダラークラスとして作成 |
This file contains 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 Xamarin.Forms; | |
using Xamarin.Forms.Platform.Android; | |
// CustomImageViewのレンダラーをCustomImageViewRendererに変更する宣言 | |
[assembly:ExportRenderer(typeof(CustomImage.CustomImage), typeof(CustomImage.Droid.CustomImageRenderer))] | |
namespace CustomImage.Droid | |
{ |
This file contains 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 Xamarin.Forms; | |
namespace CustomImage | |
{ | |
/// <summary> | |
/// Imageを継承したImageカスタム用のビュー | |
/// </summary> | |
public class CustomImage : Image |
This file contains 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 Xamarin.Forms; | |
// CustomImageViewのレンダラーをCustomImageViewRendererに変更する宣言 | |
[assembly:ExportRenderer(typeof(CustomImage.CustomImage), typeof(CustomImage.Droid.CustomImageRenderer))] | |
namespace CustomImage.Droid | |
{ | |
/// <summary> |
This file contains 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 Xamarin.Forms; | |
namespace CustomBox | |
{ | |
public class CustomBoxView : BoxView | |
{ | |
public CustomBoxView() | |
{ |
This file contains 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 Xamarin.Forms; | |
using Google.Maps; | |
// CustomMapをCustomMapRendererで扱う宣言をする | |
[assembly:ExportRenderer(typeof(GoogleMapSample.CustomMap), typeof(GoogleMapSample.CustomMapRenderer))] | |
namespace GoogleMapSample | |
{ |
NewerOlder