Skip to content

Instantly share code, notes, and snippets.

View matsukurou's full-sized avatar

matsukurou matsukurou

View GitHub Profile
パッケージのインストール
adb install [パッケージ名].apk
  • 共有のリンクを取得する
    https://drive.google.com/open?id=0B0J_dD7fVlIJdGc4a1NPbTJjYW8

  • 共有のリンクのURLを変更する
    open?となっている部分をuc?export=view&に変更する

  • Markdownに挿入する
    ![◯◯◯◯](https://drive.google.com/uc?export=view&id=0B0J_dD7fVlIJdGc4a1NPbTJjYW8)
    *◯◯◯◯の部分は画像が取得できないときに表示しておく文字

public float xx; // a
public float yx; // b
public float xy; // c
public float yy; // d
public float x0; // tx
public float y0; // ty
@matsukurou
matsukurou / ApiDefinitions.cs
Created September 25, 2015 03:42
ReproのライブラリをC#にBindingした際の、ApiDefinitionsファイル
using CoreGraphics;
using Foundation;
using UIKit;
namespace Repro
{
[Verify (ConstantsInterfaceAssociation)]
partial interface Constants
{
// extern double ReproVersionNumber;
@matsukurou
matsukurou / XF_CustomImageRenderer_iOS.cs
Last active August 29, 2015 14:24
Xamarin.FormsでImageをカスタマイズする(カスタムレンダラー、iOS)
using System;
using Xamarin.Forms;
// CustomImageのレンダラーをCustomImageRendererに変更する宣言
[assembly:ExportRenderer(typeof(CustomImage.CustomImage), typeof(CustomImage.iOS.CustomImageRenderer))]
namespace CustomImage.iOS
{
/// <summary>
/// Imageに対応した、ImageRendererを継承したクラスをカスタムレンダラークラスとして作成
@matsukurou
matsukurou / XF_CustomImageRenderer_Droid.cs
Last active August 29, 2015 14:24
Xamarin.FormsでImageをカスタマイズする(カスタムレンダラー、Android)
using System;
using Xamarin.Forms;
using Xamarin.Forms.Platform.Android;
// CustomImageViewのレンダラーをCustomImageViewRendererに変更する宣言
[assembly:ExportRenderer(typeof(CustomImage.CustomImage), typeof(CustomImage.Droid.CustomImageRenderer))]
namespace CustomImage.Droid
{
@matsukurou
matsukurou / XF_CustomImage.cs
Last active August 29, 2015 14:24
Xamarin.FormsでImageをカスタマイズする(共通プロジェクト)
using System;
using Xamarin.Forms;
namespace CustomImage
{
/// <summary>
/// Imageを継承したImageカスタム用のビュー
/// </summary>
public class CustomImage : Image
@matsukurou
matsukurou / XF_CustomImageRenderer.cs
Created July 13, 2015 08:08
Xamarin.FormsでImageをカスタマイズする(カスタムレンダラー、Android)
using System;
using Xamarin.Forms;
// CustomImageViewのレンダラーをCustomImageViewRendererに変更する宣言
[assembly:ExportRenderer(typeof(CustomImage.CustomImage), typeof(CustomImage.Droid.CustomImageRenderer))]
namespace CustomImage.Droid
{
/// <summary>
@matsukurou
matsukurou / CustomBoxView.cs
Created July 13, 2015 05:43
Xamarin.Formsでカスタムレンダラーを実装する
using System;
using Xamarin.Forms;
namespace CustomBox
{
public class CustomBoxView : BoxView
{
public CustomBoxView()
{
@matsukurou
matsukurou / XF_MapCustomRendereriOS.cs
Created July 9, 2015 07:32
Xamarin.FormsでGoogle Mapを表示する(iOS用のカスタムレンダラー)
using System;
using Xamarin.Forms;
using Google.Maps;
// CustomMapをCustomMapRendererで扱う宣言をする
[assembly:ExportRenderer(typeof(GoogleMapSample.CustomMap), typeof(GoogleMapSample.CustomMapRenderer))]
namespace GoogleMapSample
{