隐藏actionBar时,删除片段顶部的间隙

时间:2016-03-10 09:52:53

标签: android android-fragments android-actionbar

当我执行actionBar.hide()时,我在片段顶部显示间隙时遇到问题(顺便说一下,我没有在模拟器上看到这个间隙,只在真实设备上)。我尝试了this answerthat one,但没有任何效果。这个片段在MainActivity中,当我点击菜单时会加载不同的片段。它是应该隐藏actionBar(自定义)的唯一片段,因此我无法在MainActivity onCreate()方法上设置全屏标志。如何重绘视图以使actionBar空格消失?

以下是现在的样子:

enter image description here

这是我加载片段的mainActivty:

public void onCreate(Bundle savedInstanceState) {

        getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
        getWindow().requestFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
        super.onCreate(savedInstanceState);

        showActionBar();

        if(Build.VERSION.SDK_INT >= 21){
            getWindow().getDecorView().setSystemUiVisibility(
                    View.SYSTEM_UI_FLAG_LAYOUT_STABLE
                            | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
        }
        setContentView(R.layout.activity_main);
        setUpMenu();
}

单击菜单,我相应地更改了片段:

@Override
    public void onClick(View view) {
        if (view == itemProfile){
            mActionBar.hide();
            ProfileFragment profile = new ProfileFragment();
            profile.setUser(AppController.getInstance().getLoggedInUser());
            changeFragment(profile);
        }
}

自定义actionBar

private void showActionBar() {
        mActionBar = getSupportActionBar();
        mActionBar.setDisplayShowHomeEnabled(false);
        mActionBar.setDisplayShowTitleEnabled(false);
        ColorDrawable colorDrawable = new ColorDrawable(Color.parseColor("#ffffff"));
        mActionBar.setBackgroundDrawable(colorDrawable);
        LayoutInflater mInflater = LayoutInflater.from(this);

        View mCustomView = mInflater.inflate(R.layout.custom_actionbar, null);
        mTitleTextView = (TextView) mCustomView.findViewById(R.id.title_text);
        mLogo = (ImageView) mCustomView.findViewById(R.id.logo);

        ImageButton menuButton = (ImageButton) mCustomView
                .findViewById(R.id.menu);
        menuButton.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View view) {
                if (resideMenu.isOpened()) {
                    resideMenu.closeMenu();
                } else {
                    resideMenu.openMenu();
                }
            }
        });

        ImageButton mapButton = (ImageButton) mCustomView
                .findViewById(R.id.map);
        mapButton.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View view) {
                Intent i = new Intent(getApplicationContext(), MapsActivity.class);
                startActivity(i);
            }
        });

        mActionBar.setCustomView(mCustomView);
        mActionBar.setDisplayShowCustomEnabled(true);

    }

我的主题:

<style name="AppTheme" parent="Theme.AppCompat.Light">
    <item name="android:colorPrimaryDark">@android:color/black</item>
    <item name="android:windowActionBarOverlay">true</item>
</style>

我的mainActivity布局:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:fitsSystemWindows="true"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <FrameLayout
        android:id="@+id/main"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <FrameLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"
                android:id="@+id/main_fragment">
            </FrameLayout>

        </LinearLayout>
    </FrameLayout>
</FrameLayout>

我的自定义actionBar

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/transparent">

    <FrameLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@color/transparent">

        <TextView
        android:id="@+id/title_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="7dp"
        android:fontFamily="sans-serif-light"
        android:text="@string/app_title"
        android:textSize="@dimen/textsize_large"
        android:textColor="@android:color/black"
        android:layout_gravity="center"
        android:visibility="gone"/>

        <ImageView
            android:id="@+id/logo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="7dp"
            android:layout_gravity="center"
            android:src="@drawable/logo"
            android:background="@color/transparent" />

        <ImageButton android:src="@drawable/earth"
            android:background="?attr/actionBarItemBackground"
            android:layout_width="?attr/actionBarSize"
            android:layout_height="20dp"
            android:scaleType="centerInside"
            android:id="@+id/map"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:layout_gravity="right|center_vertical"
            android:layout_marginRight="-15dp"
            android:tint="@color/black"/>

        <ImageButton android:src="@drawable/titlebar_menu_selector"
            android:background="?attr/actionBarItemBackground"
            android:layout_width="?attr/actionBarSize"
            android:layout_height="match_parent"
            android:scaleType="centerInside"
            android:id="@+id/menu"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_marginLeft="-15dp"
            android:layout_gravity="left|center_vertical"
            android:tint="@color/black"/>

    </FrameLayout>

</RelativeLayout>

任何帮助都会很棒,我已经和它斗争了好几天了,我真的不知道该怎么做......

2 个答案:

答案 0 :(得分:1)

替换

mActionBar.hide();

mActionBar.setVisibility(View.GONE);

您需要将工具栏添加到“活动”布局中。找到下面的代码片段,了解简单的工具栏布局。

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:minHeight="?attr/actionBarSize"
    android:background="#2196F3"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
</android.support.v7.widget.Toolbar>

将主题应用于活动。在此步骤中,您需要将我们在步骤1中创建的主题应用于您的活动。这可以通过在您的应用程序AndroidManifest.xml中使用android:theme属性来完成。

<activity
        android:name="com.javatechig.sample.MyActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
</activity>

现在你已经准备好了。您只需要实例化工具栏并使用setSupportActionBar(工具栏)方法将其添加到您的活动中。

 import android.support.v7.app.ActionBarActivity;
 import android.support.v7.widget.Toolbar;

public class MyActivity extends ActionBarActivity{

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_my);

    // Set a toolbar to replace the action bar.
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
}
}

访问以下链接了解更多信息..

Using Toolbar as ActionBar

答案 1 :(得分:0)

将此行放在工具栏上帮我清除差距,不知道它是否适用于其他组件,如ur Relative layout。希望有帮助:))

android:fitsSystemWindows="true"
像这样

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fitsSystemWindows="true"    //add this line
android:background="@color/transparent">