Вот мой код. Я пробовал это в TableLayout, а также. Все линии влево, независимо от того, что я делаю. Хотелось бы, чтобы это (что кажется нормальным вариантом использования) было детализировано лучше.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/actionbar"
android:orientation="horizontal"
android:background="@layout/lightblue_gradient"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_margin="3dip"
android:gravity="left"
android:src="@drawable/logo" />
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:gravity="right"
android:src="@drawable/ic_menu_search" />
</LinearLayout>