Чтобы придать строке заголовка желаемый цвет (оранжевый), используйте следующий код в своем текущем коде:
this.setTitleColor(#FF6600);
или создайте собственную строку заголовка и используйте ее в приложении.Вы можете делать все виды изменений, если вы создаете свою собственную строку заголовка.
например.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="400px"
android:layout_height="fill_parent"
android:orientation="horizontal">
<ImageView android:id="@+id/ImageView01"
android:layout_width="57px"
android:layout_height="wrap_content"
android:background="@drawable/icon1">
</ImageView>
<TextView
android:id="@+id/myTitle"
android:text="This is my new title"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="@color/titletextcolor"
/>
</LinearLayout>