Я настроил строку заголовка.
Проблема в том, что я упомянул ширину как 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);