2012-06-25 48 views
0

說明:我正在創建自定義標題欄。定製的代碼是如下:如何刪除自定義標題欄中的空格

styles.xml

<?xml version="1.0" encoding="UTF-8"?> 
<resources> 
    <style name="CustomTheme" parent="android:Theme"> 
     <item name="android:windowTitleSize">50dp</item> 
    </style> 
</resources> 

title.xml

<?xml version="1.0" encoding="UTF-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/relativeLayout1" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:background="@drawable/customtitlecolor" > 

    <Button 
     android:id="@+id/about_back" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentTop="true" 
     android:layout_marginLeft="9px" 
     android:layout_marginTop="6px" 
     android:background="@drawable/custombuttoncolor" 
     android:paddingBottom="8px" 
     android:paddingLeft="8px" 
     android:paddingRight="8px" 
     android:paddingTop="8px" 
     android:text="Back" 
     android:textColor="#ffffff" /> 

    <TextView 
     android:id="@+id/about_text" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_centerHorizontal="true" 
     android:layout_centerVertical="true" 
     android:text="Large Text" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 

</RelativeLayout> 

and finally 

customizedtitlecolor.xml 

    <?xml version="1.0" encoding="UTF-8"?> 
    <shape xmlns:android="http://schemas.android.com/apk/res/android"> 
    <gradient android:startColor="#000000" android:endColor="#777777" android:angle="90"/> 
    <corners android:radius="7dp"/> 
    </shape> 

代碼在我的主要活動

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); 
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.title); 

問:我的自定義標題不採用填充父寬度。在左側和右側有灰色空間。如何去除這些空間?

回答

1

做這樣一來就會得到解決:

你的風格XML:

<resources> 
<style name="CustomWindowTitleBackground" /> 
<style name="CustomTheme" parent="android:Theme"> 
<item name="android:windowTitleSize">50dp</item> 
<item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground 
</item> 
</style> </resources>> 

則是指它表現爲:

android:theme="@style/CustomTheme"> 

希望這有助於。

+0

非常感謝您解決我的問題。這真的非常有幫助。 –