通过顶部视图看到的Android Webview选择句柄和菜单 - 如何隐藏它?

时间:2016-03-24 18:04:12

标签: android android-layout webview

我有一个主要的Webview和一个底部表格偶尔出现,覆盖它。底部也是Webview,显示为绿色。 问题是,如果主视图中有任何选择,选择句柄和菜单将显示在底部,我希望它们隐藏在后面。 enter image description here

这是布局:

<RelativeLayout 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:id="@+id/my_relative_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="0dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.gary.testandroid.TestActivity"
tools:showIn="@layout/activity_test">

<com.example.gary.testandroid.BrowseView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentTop="true" />

<LinearLayout
android:layout_alignParentBottom="true"
android:orientation="vertical"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:clipToPadding="false">

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/lview1"
android:elevation="0dp"
android:layout_height="0dp"
android:layout_width="match_parent"
android:layout_weight=".62"/>

<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/bottom_view"
android:layout_alignParentBottom="true"
android:elevation="24dp"
android:layout_height="0dp"
android:layout_width="match_parent"
android:layout_weight=".38"/>
</LinearLayout>
</RelativeLayout>

0 个答案:

没有答案