try this java code...i hope it is useful to you
LinearLayout layout=new LinearLayout(this);
LayoutParams layoutParam=new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT);
layout.setLayoutParams(new ScrollView.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT));
layout.setOrientation(LinearLayout.VERTICAL); WebView detailsView=(WebView)findViewById(R.layout.jr_lb_view_preview_switcher); layout.addView(detailsView, layoutParam); detailsView.setVerticalScrollBarEnabled(true); ScrollView scroll=new ScrollView(this); scroll.addView(layout); setContentView(scroll);
Kandhasamy
2010-08-21 04:51:39