我正在实现instance Monoid OtherType where
mempty = OtherType Nothing Nothing
来加载应用程序的网页。我已经正确设置了所有内容,但是我遇到的问题是WebView
中网站的侧边栏没有显示出来。该图标显示得还不错,并且也可以响应点击,但它不会出现或扩展。我尝试在Chrome移动浏览器中加载网站,效果很好。我的代码有什么问题?请有人帮我。
MainActivity.xml
webView
MainActivity.java
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<android.support.v4.widget.SwipeRefreshLayout
android:layout_alignParentTop="true"
android:id="@+id/pull_to_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:id="@+id/my_web_view"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</WebView>
</android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>