0

我正在尝试更改我的应用程序中 actionBar 的布局。我设法显示了布局,但有一个问题 - 布局没有延伸到栏的整个宽度,我看不到标题和图标。这是我现在的看法:

在此处输入图像描述

这是我的自定义布局的 XML:

<?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="match_parent"
    android:orientation="vertical"
    android:background="@drawable/app_bg"
    android:layout_gravity="fill_horizontal" >

<Button
    android:id="@+id/button1"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:text="Button" />

</RelativeLayout>

这就是我试图在我的主要 FragmentActivity 中显示它的方式,以及标题:

final ActionBar actionBar = getActionBar();
    actionBar.setCustomView(R.layout.action_bar);
    actionBar.setDisplayShowTitleEnabled(true);
    actionBar.setDisplayUseLogoEnabled(true);
    actionBar.setSubtitle("welcome to my app");
    actionBar.setTitle("My App"); 
    actionBar.setDisplayShowCustomEnabled(true);
    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

我希望布局延伸到栏的整个宽度。另外,我希望稍后在菜单右侧(按钮左侧)有选项按钮。

我做错了什么,我该如何解决?

4

0 回答 0