Я пытаюсь разместить три изображения с круговым фоном.Я также разместил ничью с круглой формой.
Но фон не круглый, показывает овал.
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:orientation="horizontal">
<ImageView
android:id="@+id/contactphone"
android:layout_weight="1"
android:layout_width="wrap_content"
android:src="@drawable/phonecall"
android:layout_margin="10dp"
android:background="@drawable/contact_icon_round"
android:layout_height="75dp" />
<ImageView
android:id="@+id/contactemail"
android:layout_weight="1"
android:layout_width="wrap_content"
android:src="@drawable/mail"
android:layout_margin="10dp"
android:background="@drawable/contact_icon_round"
android:layout_height="75dp" />
<ImageView
android:id="@+id/contactlocation"
android:layout_weight="1"
android:layout_width="wrap_content"
android:src="@drawable/location"
android:layout_margin="10dp"
android:background="@drawable/contact_icon_round"
android:layout_height="75dp" />
android:layout_gravity="fill_vertical" />
</LinearLayout>
RoundShape Drawable:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<solid android:color="@color/white"/>
<size android:width="5dp" android:height="5dp"/>
</shape>
Что-то не так, но вы не можете распознать ошибку?
Спасибо!