0

我在我的 android 应用程序中创建了自定义工具栏。在我的应用程序中,当我看到布局显示正确但运行应用程序时从左侧显示更多边距。我在我的 Activity 中扩展 AppCompatActivity。我已将以下代码用于自定义工具栏和 XML

代码

ActionBar actionBar = getSupportActionBar(); // 将自定义视图添加到操作栏

    actionBar.setCustomView(R.layout.custom_actionbar);
    actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);

XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mainlayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/nav_headerbg" >

   <ImageButton
        android:id="@+id/btnBack"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_alignParentLeft="true"
        android:background="@drawable/backbtn"
        android:contentDescription="@string/clear" />
    <ImageButton
        android:id="@+id/btnHome"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_toRightOf="@id/btnBack"
        android:background="@drawable/ico_nav"
        android:contentDescription="@string/clear" />

    <TextView
        android:id="@+id/header"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="Setting"
        android:textColor="#fff"
        android:textSize="20sp" />

    <ImageButton
        android:id="@+id/btnDeviceList"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="1dp"
        android:padding="5dp"
        android:background="@drawable/headerdevicelist"
        android:contentDescription="@string/clear" />

</RelativeLayout>

请找到附加的图像。我想删除以红色标记的剩余空间。如何修复它并建议我。

在此处输入图像描述

4

1 回答 1

0

在您的应用中添加自定义操作栏样式:

<style name="MyActionBar" parent="Widget.AppCompat.ActionBar">
  <item name="contentInsetStart">0dp</item>
  <item name="contentInsetEnd">0dp</item>
</style>

并将其设置在您的应用程序主题中:

<style (your application theme)>
  <item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
于 2015-09-24T13:45:48.610 回答