我真的需要自定义ActionBar。如何更改颜色和位置?这些是我目前的代码:
protected override void OnCreate(Bundle bundle)
{
this.ActionBar.NavigationMode = ActionBarNavigationMode.Tabs;
base.OnCreate(bundle);
SetContentView(Resource.Layout.Main);
InitializeData();
ActionBar bar = ActionBar;
bar.AddTab(bar.NewTab().SetText("Test1").SetTabListener(this));
bar.AddTab(bar.NewTab().SetText("Test2").SetTabListener(this));
bar.DisplayOptions = ActionBarDisplayOptions.ShowCustom | ActionBarDisplayOptions.UseLogo;
bar.NavigationMode = ActionBarNavigationMode.Tabs;
bar.SetDisplayShowHomeEnabled(true);
}
Main.axml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minWidth="25px"
android:minHeight="25px"
android:background="@color/backgroundcolor">
<include
layout="@layout/TitleBarLayout" />
TitleBarLayout.axml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="fill_parent"
android:layout_height="45dp"
android:id="@+id/TitleBarLayout"
android:orientation="horizontal"
android:background="@color/headercolor">
<Button
android:text="Button1"
android:layout_width="142.9dp"
android:layout_height="match_parent"
android:id="@+id/HeaderMenuButton"
android:layout_marginRight="0.8dp"
android:background="@color/headercolor" />
</LinearLayout>
这是我想要的图像:
我只是不喜欢这种布局格式: - 标题(紫色) - 动作栏(白色) - 其余页面内容
非常感谢你的帮助。