I've tried a couple different approaches with the weights, but obviously there is some glaring mis-understanding of how to get what I am aiming for here. Simply what I am attempting to do, is have the ImageView take up 1/3rd of the screen across the width, while having the layout of textViews take up the remainder of the 2/3rds of the screen across the width.
What ends up having as I try and manipulate it however, is that the ImageView is small and not taking up nearly the space that it should be. I've been messing around with trying to get the layouts right all morning.
The answer below has led me to the following which was what was occurring in this instance:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="3">
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/skeleton"
android:layout_weight="1"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="2">
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10" />
<EditText
android:id="@+id/editText2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10" />
</LinearLayout>
</LinearLayout>
</LinearLayout>