i am trying to add some social images in my app about me screen but i am facing a problem of giving equal spaces between imageviews.
my images looks like this:
but i want to make them look like this:
my code:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/about_screen" >
<LinearLayout
android:id="@+id/llSocialMediaContainer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal"
android:paddingBottom="@dimen/bottum_padding" >
<!-- Facebook -->
<ImageView
android:layout_width="@dimen/social"
android:layout_height="@dimen/social"
android:src="@drawable/facebook" />
<!-- Twitter -->
<ImageView
android:layout_width="@dimen/social"
android:layout_height="@dimen/social"
android:src="@drawable/twitter" />
<!-- Google+ -->
<ImageView
android:layout_width="@dimen/social"
android:layout_height="@dimen/social"
android:src="@drawable/google" />
<!-- Linkedin -->
<ImageView
android:layout_width="@dimen/social"
android:layout_height="@dimen/social"
android:src="@drawable/linkedin" />
<!-- Blog -->
<ImageView
android:layout_width="@dimen/social"
android:layout_height="@dimen/social"
android:src="@drawable/blog" />
<!-- Youtube -->
<ImageView
android:layout_width="@dimen/social"
android:layout_height="@dimen/social"
android:src="@drawable/youtube" />
<!-- Email -->
<ImageView
android:layout_width="@dimen/social"
android:layout_height="@dimen/social"
android:src="@drawable/mail" />
</LinearLayout>
</RelativeLayout>