我试图用下面的代码在appbarlayout中通过代码隐藏framelayout,但它不起作用。在AppBarLayout中获取框架的正确代码是什么?
谢谢
API使用23
代码尝试

FrameLayout search = (FrameLayout) findViewById(R.id.searchbar);
           search.setSystemUiVisibility(View.GONE);

布局应用程序主要
<?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.place_point.placepoint.MainActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <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" />

        <FrameLayout
            android:id="@+id/searchbar"
            android:layout_width="fill_parent"
            android:layout_height="56dp"
            android:layout_below="@+id/toolbar"
            android:layout_marginTop="-56dp"
            android:background="#795548">


        </FrameLayout>

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



    <include layout="@layout/content_main" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:layout_margin="@dimen/fab_margin"
        android:src="@android:drawable/ic_dialog_email" />

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

最佳答案

试着换成

search.setVisibility(View.GONE);

检查docs for setSystemUiVisibility它的全屏模式。

关于android - 在AppBarLayout中隐藏FrameLayout,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38601351/

10-13 03:26