我有一个带有WebView的NestedScrollView。 WebView包含一个带有锚点的HTML文件,它们链接到同一个文件但不同的位置(想象“菜单”和“内容”容器。当您单击菜单项时,“内容”中的相应部分应出现在屏幕上)
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:id="@+id/svNested"
android:layout_height="match_parent"
tools:showIn="@layout/activity_single"
android:background="@color/colorPrimary">
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</android.support.v4.widget.NestedScrollView>
正在加载数据:
webView?.loadDataWithBaseURL(null, htmlContent, "text/html", "UTF-8", null)
问题是这些锚点无法按预期工作。