1

我为我的 Android 应用程序创建了一个自定义标题栏。一切都很好,除了我在标题栏上放置了一个复选框并且我希望我的复选框位于更左侧(所以我可以将它与每个列表项中的复选框对齐)。我不知道如何将它移到更远的地方。这几乎就像它会让我说的那样。这是我的意思以及我的标题栏 XML 的屏幕截图:

http://i28.tinypic.com/2dpfn9.png

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    style="?android:attr/windowTitleBackgroundStyle"
    android:layout_height="?android:attr/windowTitleSize"
    >
    <CheckBox
  android:id="@+id/inbox_selectall"
  android:text=""
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:gravity="left|center_vertical"
  android:focusable="false"
  android:background="@drawable/checkbox_background"
  android:button="@drawable/checkbox"
 />
 <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_centerVertical="true">
  <TextView
   xmlns:android="http://schemas.android.com/apk/res/android"
   style="?android:attr/windowTitleStyle"
     android:id="@+id/inbox_title"
     android:text="@string/title_inbox"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     android:gravity="center_vertical|center_horizontal"
     android:background="@null"
         android:fadingEdge="horizontal"
         android:scrollHorizontally="true"
 />
 </LinearLayout>
</RelativeLayout>
4

1 回答 1

1

需要注意的一件事是,当您设置android:background为 9-patch 时,您假定它是填充的。对于标题栏图形,有几个像素的左侧填充(见底行像素)。我不记得了,但是您可以使用android:padding.

于 2010-07-30T02:25:59.433 回答