我的xml文件:
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/groupon_web">
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/Groupon_webView"
android:layout_below="@+id/toolbar"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay">
</android.support.v7.widget.Toolbar>
<Button
android:layout_width="65dp"
android:layout_height="65dp"
android:background="@drawable/not_favorite"
android:id="@+id/favorite"
android:layout_gravity="end|bottom"
android:layout_marginRight="20dp"
android:layout_marginEnd="20dp"
android:layout_marginBottom="40dp"/>
</FrameLayout>
但工具栏中的导航按钮效果很好。我不知道为什么webview上面的按钮根本不起作用。谁能帮我这个?谢谢!
答案 0 :(得分:0)
将您的webview,工具栏和按钮放在相对布局中。在你的框架布局内。使用相同的层次结构。