我在我的应用中加载了静态html内容的Webview。
问题是,当我点击链接或嵌入内容(推文,youtube视频)时, webview会滚动回到顶部。
它看起来像提到here
的JS问题我尝试使用NestedScrollView或一些带有params的技巧,如
android:focusableInTouchMode="true"
在LinearLayout父级中但没有任何作用
这是我的xml:
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:id="@+id/article_webview"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</android.support.v4.widget.NestedScrollView>
它将位于回收商视图。
我的问题是:
有没有办法在webview设置或xml中阻止此行为?
谢谢!
答案 0 :(得分:0)
我遇到了同样的问题。我的WebView
也在RecyclerView
内。
当我在android:descendantFocusability="blocksDescendants"
上添加RecyclerView
时,该问题对我来说不再发生。
<androidx.recyclerview.widget.RecyclerView
android:descendantFocusability="blocksDescendants"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>