自定义操作栏在左侧android上留下黑色空间?

时间:2015-01-06 07:01:32

标签: android android-actionbar

我创建了一个自定义操作栏

XML

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

<TextView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:text="Choose"
    android:textColor="#000000"
    android:id="@+id/mytext"
    android:textSize="18sp" />
 </LinearLayout>

java代码

 android.support.v7.app.ActionBar bar = getSupportActionBar();
    bar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
    bar.setCustomView(R.layout.action_layout);

截图

SCREENSHOT

正如您所看到的,它会在屏幕的左上方留下商场黑色空间。我不想要它。我希望它是纯白色的。

要实现这一目标需要做些什么。

1 个答案:

答案 0 :(得分:1)