0

我已经自定义了我的标题栏。问题是虽然我提到宽度为 fill_parent 它没有填充父级,两边都有一些空白

代码如下

<resources>
    <style name="LargeTitleTheme">
        <item name="android:windowTitleSize">40dip</item>
    </style>
</resources>

xml2:

<RelativeLayout android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <TextView android:id="@+id/textview" android:textStyle="bold"
            android:layout_width="fill_parent" android:layout_height="wrap_content"
            android:gravity="center" android:text="fggffgjjkki"
            android:textSize="30sp"
                        android:textColor="#FFFFFF" android:background="@drawable/top_bar" />
</RelativeLayout>

代码:

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
        setContentView(R.layout.homegrid);
        getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.customtitle);
4

1 回答 1

0

尝试将 android:layout_marginLeft="0dp" android:layout_marginRight="0dp" 添加到 RelativeLayout。

于 2011-12-04T07:14:58.423 回答