Android.Support.V7.App.ActionBar不填充enitre屏幕

时间:2015-06-24 16:48:51

标签: android xamarin

当我尝试给自定义操作栏充气时,它永远不会填满整个屏幕。 它削减了角落。在我使用Android.Support.V7.App.ActionBar之前,一切正常。使用Xamarin开发我的应用程序,不确定这是否有任何区别

Android.Support.V7.App.ActionBar mActionBar = this.SupportActionBar;

mActionBar.SetDisplayShowHomeEnabled(false);
mActionBar.SetDisplayShowTitleEnabled(false);
mActionBar.SetDisplayShowCustomEnabled(true);
mActionBar.SetCustomView(Resource.Layout.LoginActionBar);
LoginActionBar的代码

<?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="50dp"
android:orientation="vertical"
android:background="@android:color/holo_orange_light">
<ImageView
    android:id="@+id/logo"
    android:layout_width="wrap_content"
    android:layout_height="50dp"
    android:tint="@android:color/holo_blue_bright" />
 </RelativeLayout>

请在此处找到屏幕截图的链接http://hostthenpost.org/uploads/cc29a398ec2da6cbbf6f43d1d7e95ca3.png

0 个答案:

没有答案