Notice
Recent Posts
Recent Comments
올해는 머신러닝이다.
[팁]원하는 view 사이즈 알아내기 본문
public int measureCellWidth( Context context, View cell )
{
// We need a fake parent
FrameLayout buffer = new FrameLayout( context );
android.widget.AbsListView.LayoutParams layoutParams = new android.widget.AbsListView.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
buffer.addView( cell, layoutParams);
cell.forceLayout();
cell.measure(1000, 1000);
int width = cell.getMeasuredWidth();
buffer.removeAllViews();
return width;
}
'Android > Tip&Tech' 카테고리의 다른 글
[펌] JSP 에서 엑셀 다운로드 받기 (0) | 2012.11.12 |
---|---|
유용한 안드로이드 오픈 라이브러리 (1) | 2012.10.04 |
[펌]ViewPager를 사용해 보자(fragment편) (0) | 2012.09.25 |
[번역]Horizontal View Swiping with ViewPager (1) | 2012.09.25 |
[펌]android fragment 튜터리얼 (5) | 2012.09.25 |