我必须通过执行其URL来加载webview中的视图,并且在Linearlayout中的两个相对布局我隐藏了一个在webview中显示url,它在垂直和水平都有滚动,我面临的问题就这个 只能水平滚动,但我也需要在垂直方向上查看,
这里是布局的 活动代码 有人帮我解决了
提前谢谢<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_marginTop="5dip" android:layout_marginBottom="5dip"
android:scrollbars="none">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:id="@+id/jr_lb_view_preview">
<ProgressBar android:id="@+id/jr_lb_content_iv_progress"
android:layout_centerInParent="true" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminateDrawable="@drawable/pb" />
<ImageView android:id="@+id/jr_lb_content_iv"
android:layout_centerInParent="true" android:layout_width="150dip"
android:layout_height="225dip" android:background="@drawable/border"/>
</RelativeLayout>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:id="@+id/jr_lb_wb_view" android:background="@drawable/border"
android:scrollX="1dip">
<WebView android:id="@+id/jr_lb_view_preview_switcher2"
android:layout_width="308dip" android:layout_height="305dip"
android:background="@drawable/border" android:scrollbars="vertical"
android:scrollbarAlwaysDrawVerticalTrack="true"/>
</RelativeLayout>
</LinearLayout>
public void onClick(View v) {
preview.setVisibility(View.GONE);
g.setSelection(gPosition);
webview = (WebView) findViewById(R.id.jr_lb_view_preview_switcher2);
webview.getSettings().setBuiltInZoomControls(true);
new Task_Item_Selected().execute();
webview.loadUrl(product_img_large[gPosition]);
webview.setVisibility(WebView.VISIBLE);
preview2.setVisibility(View.VISIBLE);
// applyRotation(0, 0, 90);
}
答案 0 :(得分:0)
将您的布局高度更改为“FILL_PARENT”或“MATCH_PRAENT”