Estoy creando un layout para mi action bar
y quiero centrar la imagen y el texto según el ancho del dispositivo.
Estoy haciendo esto:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center" >
<ImageView
android:id="@+id/actionBarLogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/launcher_icon" />
<TextView
android:id="@+id/app_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:textSize="18sp"
android:text="@string/app_name_title" />
</LinearLayout>
</LinearLayout>
Pero no me lo centra correctamente. ¿Qué estoy haciendo mal?