2012-01-26 7 views

답변

1

물론, 당신은 다음과 같이 프로그래밍있는 ScrollView의 내부 전체 레이아웃을 넣을 수 있습니다 : 위대한 작품을

LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
View view = inflater.inflate(R.layout.mylayout, null); 
ScrollView scrollView = new ScrollView(this); 
scrollView.addView(view); 
setContentView(scrollView); 
+0

합니다. 우리는 점점 더 가깝지만 addView 메소드가 필요했습니다. 감사! –

관련 문제