我正在尝试设置我的应用程序的自定义视图,而我所做的布局并没有填满整个操作栏。我尝试了很多样式设置,但没有一个对我有用。
这是我的活动代码
View view = getLayoutInflater().inflate(R.layout.actionbar_customized_home, null);
getSupportActionBar().setDisplayShowCustomEnabled(true);
getSupportActionBar().setCustomView(view);
这是放置设置为视图的布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/actionbar_color"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="25dp"
android:layout_centerInParent="true"
android:scaleType="fitCenter"
android:src="@drawable/logo"/>
</RelativeLayout>
甚至像 navdrawer 这样的菜单项的背景,我怎样才能将我的自定义视图设置为背景颜色?
我非常感谢您的帮助