我能找到真正的答案,最後我加載新的佈局中心的標題欄 組標題欄的代碼的OnCreate
final boolean customTitleSupported = requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
if (customTitleSupported) {
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,
R.layout.title_bar);
}
final TextView myTitleText = (TextView) findViewById(R.id.title_bar);
if (myTitleText != null) {
myTitleText.setText(R.string.title_ble_melem);
}
這裏是佈局
<?xml version="1.0" encoding="utf-8" ?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linear"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/title_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="title bar"
android:layout_centerInParent="true"
android:layout_marginLeft="5dip"
android:textStyle="bold"
android:textColor="#ffffff"
android:textSize="20sp"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/title_bar"
android:src="@drawable/ic_top_bar"
/>
</RelativeLayout >
非常感謝您的回覆。
+1發佈一個正確的答案,不依賴於無證結構。但是,如果您想添加到自定義標題欄的[進度條](http://stackoverflow.com/q/11254366/869501),您將無法使用。 – ateiob 2012-06-29 12:32:49