Webview不是可滚动的Android

时间:2019-11-27 09:48:18

标签: android android-webview

我在relative layout有一些内容,并且可以单击imageview来隐藏/显示带有链接的textview和带有内容的relative layout。我遇到这样的问题:当某人不隐藏文本和相对布局时,可以轻松上下滚动此内容下方的webview,但是当某人将webview上方隐藏内容时,只能滚动向下,无法向上滚动。我看到了this个问题,但我的webview匹配父母,这不会引起我认为的任何问题。也许我在另一个地方有问题?

  

这是我的xml模板:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:id="@+id/jobViewLayout"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical">


<com.google.android.material.appbar.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:subtitleTextAppearance="@style/Toolbar.SubtitleText"
        app:titleTextAppearance="@style/Toolbar.TitleText" />

</com.google.android.material.appbar.AppBarLayout>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginStart="7dp"
    android:layout_marginTop="7dp"
    android:layout_marginEnd="7dp"
    android:layout_marginBottom="3.5dp"
    android:background="@drawable/old_item">


    <TextView
        android:id="@+id/job_link"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/content_layout"
        android:layout_marginStart="10dp"
        android:layout_marginTop="5dp"
        android:layout_marginEnd="54dp"
        android:ellipsize="end"
        android:singleLine="true"
        android:textColor="@color/gray" />

    <ImageView
        android:id="@+id/hide_content"
        android:layout_width="24dp"
        android:layout_height="24dp"
        android:layout_below="@id/content_layout"
        android:layout_alignParentEnd="true"
        android:layout_marginTop="5dp"
        android:layout_marginEnd="10dp"
        android:src="@drawable/ic_up_arrow"
        android:contentDescription="hide btn" />

</RelativeLayout>


<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
    android:id="@+id/swipeContainer"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginStart="7dp"
    android:layout_marginTop="3.5dp"
    android:layout_marginEnd="7dp"
    android:layout_marginBottom="7dp"
    android:labelFor="@id/swipeContainer"
    android:background="@color/white"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <my_package.jobAGENT.adapters.LollipopFixedWebView
        android:id="@+id/webView"
        android:labelFor="@id/webView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>

1 个答案:

答案 0 :(得分:0)

您为什么要使用该<de.jobnetzwerk.jobnet.jobAGENT.adapters.LollipopFixedWebView/>

改为使用WebView,它将正常工作

<WebView
    android:id="@+id/webView"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />