Это не то, как android:layout_gravity
работает.Оба параметра, left
и center_horizontal
, работают только тогда, когда android:orientation
равен vertical
.Чтобы добиться того, что вы хотите, лучше использовать RelativeLayout
:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginLeft="5dip"/>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_centerHorizontal="true"
android:textColor="#ffffff"/>
</RelativeLayout>