목록안드로이드 (401)
설.현.아빠
http://huewu.blog.me/110084228131
선언적인 방식 예) setContentView(id)를 통해서 activity실행시에 xml로 정의되어 있는 UI를 자동으로 생성해서 화면으로 보여주기 단점은 Activity가 아니면 적용되지 않는다. (이유는 setContentView method가 acitivity의 method이므로...) 해당 activity가 아닌 특정뷰에서 xml에 정의되어있는 각종 view들을 inflate하는 예는 아래와 같습니다. 이를 위한 api가 layoutinflater이다. Layout을 inflate 할 경우 Textview를 inflate 할 경우 http://www.androes.com/114
흠...과연 단말에서 동작시켰을땐 어떻게 될까...애뮬에서는 약간 느리게 동작하는것 같아서 실망좀... 일단 http://foxmann.blog.me/90095790218 ,
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