我正在使用WebView来显示内容,但是长时间的内容会产生水平滚动,这是不希望的。当我尝试使用setLoadWithOverviewMode()
和setUseWideViewPort()
之类的方法时,正如所有其他解决方案所建议的那样,文本缩小得太小而无法阅读。自动布局算法也会产生相同的结果。
理想的结果是让html保留其缩放比例,但包装文本以使其适合屏幕,而不是缩小文本大小。这是我的xml(如果有帮助的话):
<ScrollView>
...
<LinearLayout
android:id="@+id/details_fragment_description_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="@dimen/margin_extra_extra_large"
android:background="@color/white"
android:orientation="horizontal"
android:paddingTop="@dimen/padding_extra_extra_large"
android:visibility="visible">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingEnd="@dimen/padding_extra_extra_large"
android:paddingStart="@dimen/padding_extra_extra_large"
android:src="@drawable/ic_drafts_24_biscay"/>
<WebView
android:id="@+id/details_fragment_description_webview"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
答案 0 :(得分:-1)
在活动/类别中创建WebView
的实例,然后在您的实例上调用setOnTouchListener
界面并以编程方式禁用滚动:
webview.setOnTouchListener(new View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
return (event.getAction() == MotionEvent.ACTION_MOVE);
}
});
然后,在您的 xml 中,用WebView
包裹ScrollView
并设置android:scrollbars="vertical"
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="vertical">
<WebView
android:id="@+id/details_fragment_description_webview"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</ScrollView>
贷方转到this solution