j'ai suivi les instructions de cette question SO: How to change the text on the action barComment définir l'arrière-plan de la barre de titre?
Je suis en mesure de créer avec succès ma propre barre de titre, mais quand je demande une couleur de fond à ma mise en page, la couleur ne couvre pas sur l'ensemble de la barre de titre. Il y a encore des restes de la couleur de fond gris androïde.
Voici mon XML:
<?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" android:background="@color/solid_blue">
<ImageView android:id="@+id/logo"
android:layout_width="57px"
android:layout_height="wrap_content"
android:background="@drawable/icon">
</ImageView>
<TextView
android:id="@+id/myTitle"
android:text="StockDroid by"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="#FFFFFF"
/>
</LinearLayout>