목록분류 전체보기 (486)
설.현.아빠
drawable에 있는 이미지가 아닌 외부 이미지를 사용하는 방법을 소개합니다. 1. WebView 를 이용하는 방법 2. BitMap 을 이용한 방법 3. Drawable 을 이용한 방법 4. URL 을 이용한 방법 http://www.androes.com/59
http://blog.naver.com/kippee/130045057666
이미지 크기를 줄인후 45도로 회전시키기 // load the origial BitMap (500 x 500 px) Bitmap bitmapOrg = BitmapFactory.decodeResource(getResources(), R.drawable.android); int width = bitmapOrg.width(); int height = bitmapOrg.height(); int newWidth = 200; int newHeight = 200; // calculate the scale - in this case = 0.4f float scaleWidth = ((float) newWidth) / width; float scaleHeight = ((float) newHeight) / height; /..
http://dukci.blog.me/50098328488
http://www.androidpub.com/1198436
http://www.androidside.com/B46/14436
http://www.androidside.com/B46/16230
http://androidnote.co.kr/entry/외부-이미지를-불러오기