如何隐藏特定webview网址的线性布局工具栏?

时间:2017-10-28 10:03:09

标签: java android webview android-linearlayout android-toolbar

我在线性布局中创建了一个与相对布局webview相关联的工具栏。如何为特定网址隐藏此工具栏,例如:'index.php' 我的工具栏代码如下 我尝试了很多次,并且无法使用给定的答案使其正常工作,因此使用xml布局代码更新代码。

 if (TextUtils.isEmpty(getString(R.string.toolbar))) {
            showToolBar = false;
        }

        if (showToolBar) {

            mSearch = (ImageView) findViewById(R.id.search);
            mAdd = (ImageView) findViewById(R.id.add);
            mProfile= (ImageView) findViewById(R.id.profile);
            mHome= (ImageView) findViewById(R.id.home);
            mSettings= (ImageView) findViewById(R.id.settings);
          //  ImageView mRefresh = (ImageView) findViewById(R.id.refresh);

            mSettings.setOnClickListener(this);
            mHome.setOnClickListener(this);
            mProfile.setOnClickListener(this);
            mSearch.setOnClickListener(this);
            mAdd.setOnClickListener(this);

           // mRefresh.setOnClickListener(this);

        }

        else {
            LinearLayout llToolbarContainer = (LinearLayout) findViewById(R.id.toolbar_footer);
            if (llToolbarContainer != null) {
                llToolbarContainer.setVisibility(View.GONE);
                RelativeLayout.LayoutParams lp = (RelativeLayout.LayoutParams) mAdView.getLayoutParams();
                lp.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM, RelativeLayout.TRUE);
            }

XML布局代码,请帮忙

<?xml version="1.0" encoding="utf-8"?>
<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:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:id="@+id/webview_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent"

        android:visibility="invisible"
        tools:context=".universalwebview.MainActivity">
        <WebView
            android:id="@+id/webview"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:scrollbars="none" />
    </FrameLayout>


    <LinearLayout
        android:id="@+id/toolbar_footer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="#fff"
        android:orientation="horizontal">

        <ImageView
            android:id="@+id/home"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="?attr/selectableItemBackground"
            android:clickable="true"
            android:padding="10dp"
            android:src="@drawable/ic_action_home"
            android:tint="@color/tintcolor" />

        <ImageView
            android:id="@+id/search"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="?attr/selectableItemBackground"
            android:clickable="true"
            android:padding="10dp"
            android:src="@drawable/ic_action_search"
            android:tint="@color/tintcolor" />

        <ImageView
            android:id="@+id/add"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="?attr/selectableItemBackground"
            android:clickable="true"
            android:padding="10dp"
            android:src="@drawable/ic_action_add"
            android:tint="@color/tintcolor" />

        <ImageView
            android:id="@+id/profile"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="?attr/selectableItemBackground"
            android:clickable="true"
            android:padding="10dp"
            android:src="@drawable/ic_action_profile"
            android:tint="@color/tintcolor" />


        <ImageView
            android:id="@+id/settings"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="?attr/selectableItemBackground"
            android:clickable="true"
            android:padding="10dp"
            android:src="@drawable/ic_action_settings"
            android:tint="@color/tintcolor" />

    </LinearLayout>

    <ImageView
        android:id="@+id/image_splash"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="centerCrop"
        android:visibility="visible"
        android:src="@drawable/splash" />
</RelativeLayout>

3 个答案:

答案 0 :(得分:1)

在您的MainActivity Code中,您默认情况下不能将您的Showtoolbar bool变量设为false。因为这是您的底部导航实际填充的位置。因此它可能会产生运行时错误。相反,请使您的当网址包含&#34; index.php&#34;。

时,隐藏线性布局
@Override
public void onPageStarted(WebView view, String url, Bitmap favicon) {

     if(url.contains("index.php") 
      {
       findViewById(R.id.toolbar_footer).setVisibility(View.GONE);
      }
    else
     {
    findViewById(R.id.toolbar_footer).setVisibility(View.VISIBLE);
     }
}

在WebViewClient下调用它。

答案 1 :(得分:0)

  1. 获取网址
  2. 使用url.contains("index.php")判断
  3. 设置showToolBar = false;showToolBar = true;
  4. 使用if (showToolBar) {} else {}
  5. 试试这个。

    private boolean showToolBar;
    private LinearLayout llToolbarContainer;
    
    public void initWebView() {
        llToolbarContainer = (LinearLayout) findViewById(R.id.toolbar_footer);
    
        String url = "your_url";
        if (url.contains("index.php")) {
            showToolBar = false;
            llToolbarContainer.setVisibility(View.GONE);
        } else {
            showToolBar = true;
            llToolbarContainer.setVisibility(View.VISIBLE);
        }
    
            mSearch = (ImageView) findViewById(R.id.search);
            mAdd = (ImageView) findViewById(R.id.add);
            mProfile = (ImageView) findViewById(R.id.profile);
            mHome = (ImageView) findViewById(R.id.home);
            mSettings = (ImageView) findViewById(R.id.settings);
            //  ImageView mRefresh = (ImageView) findViewById(R.id.refresh);
    
            mSettings.setOnClickListener(this);
            mHome.setOnClickListener(this);
            mProfile.setOnClickListener(this);
            mSearch.setOnClickListener(this);
            mAdd.setOnClickListener(this);
    
            // mRefresh.setOnClickListener(this);           
    
    }
    

答案 2 :(得分:0)

您需要创建一个隐藏工具栏的功能。并为WebViewClient

创建自定义WebView
 webView.setWebViewClient(new WebViewClient() {
        @Override
        public void onPageFinished(WebView view, String url) {
             super.onPageFinished(view, url);
             if (url.contains("index.php")) {
                 hideToolBar();
             }                  
        }
 };

像这样的东西。不确定您是否需要onPageFinished,但您可以找到更多信息WebViewClient