我有这个布局:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/back"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<ImageView android:layout_width="200dp"
android:layout_height="200dp"
android:layout_gravity="center_horizontal"/>
<WebView
android:id="@+id/htmlView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</ScrollView>
Webview 仅用于显示 html 格式的文本,我不需要任何特殊功能。问题是我没有得到可滚动的布局,而是这样的:
textview(大,大约占布局的 30%,不可滚动)
图片(大,大约 50% 不可滚动)
微小的可滚动网页视图
问题出在哪里?