问题:
滚动条显示SPLIT秒然后它就消失了。我可以将ScrollView
的{{1}}更改为height
,然后在我可以滚动的小方框中。
在100dp
我可以看到两个元素的高度都是1920。似乎webview以某种方式推动其他所有内容违反Android Device Monitor
规则,因为它们更像match_parent
。这是怎么回事?
wrap_content
我注意到<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:id="@+id/speakerBioWebView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="1000dp"></WebView>
</ScrollView>
</LinearLayout>
对我的设置发出了微弱的警告。警告显示Android Studio
的{{1}}属性下面有一条微弱的红线。我将其更改为WebView
并关闭了外部layout_height
。
这真的是一个错误是疏忽,因为警告根本没有引起我的注意。确保查看所有编译器/ IDE警告,以查看是否有任何有用的通知。
答案 0 :(得分:1)
不确定为什么要在WebView周围滚动视图 WebView有自己的滚动条。