I am trying a profile pic with name and email address in the linear Layout strangely this isn't coming up properly when I see in Graphical layout in eclipse I am not sure what is wrong.
Here is what I would like to expect:

Here is how it shows up:

Here is the code that I am using:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearTotalLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg"
android:baselineAligned="false"
android:orientation="horizontal" >
<LinearLayout
android:id="@+id/LinearLayoutforImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight=".20" >
<ImageView
android:id="@+id/imageforprofile"
android:layout_width="75dp"
android:layout_height="75dp"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:src="@drawable/profilepic" >
</ImageView>
</LinearLayout>
<LinearLayout
android:id="@+id/LinearLayoutforText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left|center"
android:layout_weight=".80"
android:orientation="vertical" >
<TextView
android:id="@+id/textforprofile"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="left"
android:text="testing"
android:textColor="#FFFFFF"
android:textStyle="bold" />
<TextView
android:id="@+id/textforprofileemail"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="left"
android:text="[email protected]"
android:textColor="#FFFFFF"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>
I am not sure where I am going wrong? Can somebody help me with this?