I need to get my title bar to be orange instead of the standard gray and I can't figure out how to edit it's settings. I also need to align the text so its on the right side of the title bar instead of the left. Any ideas on how to do this?

link|improve this question

58% accept rate
feedback

3 Answers

up vote 0 down vote accepted

You can do that with the solution in the last comment on Set title background color.

link|improve this answer
feedback

Android: Custom Title Bar

link|improve this answer
feedback

To give the title bar your desired color(orange), use the following code in your oncreate,

   this.setTitleColor(#FF6600);

or create a custom title bar and use it throughout the application. U can do all kinds of modifications if you create your custom title bar.

eg.

     <?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>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.