Здравствуйте, у меня есть 2 ImageView как сделать так, чтобы они были прилеплены 1 к левому краю экрана, другой к правому? При этом они должны находится на одной прямой?
Вот код моей XML:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="wrap_content"
android:layout_height="match_parent" android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/ActionBarCompat"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:baselineAligned="false">
<ImageView
android:layout_width="100dp"
android:layout_height="wrap_content"
android:id="@+id/imageView"
android:src="@drawable/logo"
android:layout_marginLeft="10dp"
android:contentDescription="@string/logo"
android:layout_gravity="center_vertical" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView2"
android:src="@drawable/phone"
android:layout_gravity="center_vertical" />
</LinearLayout>
</RelativeLayout>
Заранее большое спасибо!