gpt4 book ai didi

android - webview 占据整个屏幕,覆盖工具栏

转载 作者:行者123 更新时间:2023-11-30 01:03:54 27 4
gpt4 key购买 nike

我有一个带有两个工具栏和一个 WebView 的应用程序。当用户在 webview 中向上滑动时,顶部工具栏应该滑动并隐藏,当他向下滑动时,顶部工具栏应该滑动并显示,就像 youtube 应用程序一样。

<?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="com.moover.moover.MainActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">

<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"
app:layout_scrollFlags="scroll|enterAlways" />

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar2"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay">
<TextView
android:id="@+id/textViewWebPage"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v7.widget.Toolbar>

</android.support.design.widget.AppBarLayout>

<android.support.v7.widget.RecyclerView
android:id="@+id/rcView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
/>

<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>

</android.support.design.widget.CoordinatorLayout>

目前webview正在覆盖toolbars,占据了整个屏幕,而且是不可滚动的

最佳答案

关于覆盖工具栏的WebView:关注这个tutorial尝试在应用栏布局中移动 View ,或者简单地创建一个 content_main.xml 并尝试将其包含在 View 中。

使 WebView 可滚动有两种方法:

1) 使用 XML:Webview 应该有一个像这样的 ScrollView 的父级:

        <ScrollView 
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<WebView android:id="@+id/web_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</ScrollView>

2) 在代码中设置:

WebView webView = (WebView) findViewById(R.id.web_view);
webView.setHorizontalScrollBarEnabled(true);
webView.setVerticalScrollBarEnabled(true);

关于android - webview 占据整个屏幕,覆盖工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39081002/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com