Я пытаюсь создать простую сетку изображений, прикрепленных рядом друг с другом, но, похоже, не могу избавиться от интервала ~ 5px, который автоматически возникает между каждым элементом.
Любая помощь будет принята с благодарностью!Йохан
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="0px"
android:layout_marginRight="0px"
android:orientation="vertical"
>
<ImageView
android:id="@+id/o1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="0px"
android:layout_marginRight="0px"
android:src="@drawable/p1
<ImageView
android:id="@+id/o2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/o1"
android:layout_marginLeft="0px"
android:layout_marginRight="0px"
android:src="@drawable/p2"/>
<ImageView
android:id="@+id/o3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/o2"
android:layout_marginLeft="0px"
android:layout_marginRight="0px"
android:src="@drawable/p3"/>
</RelativeLayout>