Skip to content

Instantly share code, notes, and snippets.

@tabsong
tabsong / NinePatchBitmapFactory.java
Created November 20, 2016 06:14 — forked from briangriffey/NinePatchBitmapFactory.java
Create 9-patches simlar to - (UIImage *)resizableImageWithCapInsets:(UIEdgeInsets)capInsets
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.NinePatch;
import android.graphics.Rect;
import android.graphics.drawable.NinePatchDrawable;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
/**
@tabsong
tabsong / Test
Created July 11, 2014 08:42
Test Gist
MAMapView *mapView = [[MAMapView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.view.bounds), CGRectGetHeight(self.view.bounds))];
mapView.zoomLevel = 10.f;
[self.view addSubView:mapView];