Android浮动按钮和高级webview不起作用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android浮动按钮和高级webview不起作用相关的知识,希望对你有一定的参考价值。
我有一个带有android高级Web视图的浮动按钮,一切都很好地显示但是当我点击浮动按钮时,它会在webview中注册点击并更改页面。就像我点击网页浏览一样。
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="net.seekadventure.seekadventure.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
</android.support.design.widget.AppBarLayout>
<im.delight.android.webview.AdvancedWebView
android:id="@+id/newWeb"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
>
</im.delight.android.webview.AdvancedWebView>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_gravity="bottom|end"
android:layout_marginBottom="24dp"
android:layout_marginEnd="21dp"
android:src="@drawable/ic_share" />
<ProgressBar
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/loader"
android:layout_weight="1"
android:layout_gravity="center_vertical|center_horizontal|center"/>
</android.support.design.widget.CoordinatorLayout>
答案
试试这个让你的FloatingActionButton
android:clickable="true"
android:focusableInTouchMode="true"
android:focusable="true"
示例代码
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_gravity="bottom|end"
android:layout_marginBottom="24dp"
android:layout_marginEnd="21dp"
android:clickable="true"
android:focusableInTouchMode="true"
android:focusable="true"
android:src="@drawable/ic_menu_send" />
以上是关于Android浮动按钮和高级webview不起作用的主要内容,如果未能解决你的问题,请参考以下文章
android webview setbackground()不起作用
Android Compose 新闻App导航动画WebView浮动按钮底部导航