我创建了一个自定义操作栏
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);
截图
正如您所看到的,它会在屏幕的左上方留下商场黑色空间。我不想要它。我希望它是纯白色的。
要实现这一目标需要做些什么。
答案 0 :(得分:1)
尝试使用false调用setDisplayShowHomeEnabled()。