我已經自定義了我的標題欄。 的問題是,雖然我所提到的寬度FILL_PARENT其不與一些空白空間上側任android自定義標題沒有填充父寬度
代碼是下面
<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);
它的工作就像奇蹟。謝謝你的答案 – png