xml 에서 width, height의 dp와


java code 상에서 LayoutParams(w, h)와 단위가 다름.


final int width = (int)TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 240, getResources().getDisplayMetrics());

final int height = (int)TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 320, getResources().getDisplayMetrics());


LinearLayout.LayoutParams paramlinear = new LinearLayout.LayoutParams(width,height);


위와 같이 하면 됌.

'Android' 카테고리의 다른 글

Activity 전환 간에 animation  (0) 2015.04.16
xml animation 예제  (0) 2015.04.16
File String path에서 Uri 뽑아내기  (0) 2015.03.03
freemp3fordroid  (0) 2014.04.25
Lock screen orientation  (0) 2013.11.07
Posted by LeeSh217
,