so as stated in the title, I have an issue with the different designes between landscape and portrait, I have been trying to make landscape look better(more like the portrait design) but no matter what I do it turns out ugly(small imageview and smaller movie details field), here is the picture of the looks and the xml code, if there is anything that can be done id love to hear you're advice.
XML CODE (codes are pretty much the same):this one is inside layout-land\[code\]<?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:background="#F0FFF0" androidrientation="vertical" android:weightSum="10.0" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" androidrientation="vertical" androidaddingLeft="100dp" androidaddingRight="100dp" > <EditText android:id="@+id/etTitle" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" android:gravity="center" android:hint="@string/movie_title" android:inputType="textPersonName" /> <TextView android:id="@+id/tvError3" android:layout_width="match_parent" android:layout_height="wrap_content" android:textColor="#FF0000" android:visibility="invisible" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="6.0" android:baselineAligned="false" androidrientation="vertical" androidaddingLeft="50dp" androidaddingRight="50dp" > <EditText android:id="@+id/etBody" android:layout_width="match_parent" android:layout_height="match_parent" android:ems="10" android:gravity="center" android:hint="@string/movie_body" android:inputType="textMultiLine" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" androidrientation="horizontal" androidaddingLeft="100dp" androidaddingRight="100dp" > <EditText android:id="@+id/etUrl" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:ems="10" android:gravity="center" android:hint="@string/movie_url" android:inputType="textPostalAddress" > <requestFocus /> </EditText> <Button android:id="@+id/bShow" style="@style/ButtonText" android:layout_width="wrap_content" android:layout_height="34dp" android:background="@drawable/btn_black_glossy" android:text="@string/show_button" /> </LinearLayout> <TextView android:id="@+id/tvError" android:layout_width="fill_parent" android:layout_height="wrap_content" android:textColor="#FF0000" android:visibility="invisible" /> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="4.5" androidrientation="horizontal" androidaddingLeft="50dp" androidaddingRight="50dp" > <ImageView android:id="@+id/ivMovieImage" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_above="@+id/bSave" /> <Button android:id="@+id/bSave" style="@style/ButtonText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:layout_toLeftOf="@+id/space" android:background="@drawable/btn_black_glossy" androidaddingLeft="50dp" androidaddingRight="50dp" android:text="@string/save" /> <Button android:id="@+id/bCancel" style="@style/ButtonText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:layout_toRightOf="@id/bSave" android:background="@drawable/btn_black_glossy" androidaddingLeft="50dp" androidaddingRight="50dp" android:text="@string/cancel" /> <TextView android:id="@id/space" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" /> </RelativeLayout></LinearLayout>this one is inside standart layout folder (serves as portrait)<?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:background="#F0FFF0" androidrientation="vertical" android:weightSum="10.0" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" androidrientation="vertical" androidaddingLeft="50dp" androidaddingRight="50dp" > <EditText android:id="@+id/etTitle" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" android:gravity="center" android:hint="@string/movie_title" android:inputType="textPersonName" /> <TextView android:id="@+id/tvError3" android:layout_width="match_parent" android:layout_height="wrap_content" android:textColor="#FF0000" android:visibility="invisible" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="6.0" android:baselineAligned="false" androidrientation="vertical" androidaddingLeft="30dp" androidaddingRight="30dp" > <EditText android:id="@+id/etBody" android:layout_width="match_parent" android:layout_height="match_parent" android:ems="10" android:gravity="center" android:hint="@string/movie_body" android:inputType="textMultiLine" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" androidrientation="horizontal" androidaddingLeft="50dp" androidaddingRight="50dp" > <EditText android:id="@+id/etUrl" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:ems="10" android:gravity="center" android:hint="@string/movie_url" android:inputType="textPostalAddress" > <requestFocus /> </EditText> <Button android:id="@+id/bShow" style="@style/ButtonText" android:layout_width="wrap_content" android:layout_height="34dp" android:background="@drawable/btn_black_glossy" android:text="@string/show_button" /> </LinearLayout> <TextView android:id="@+id/tvError" android:layout_width="fill_parent" android:layout_height="wrap_content" android:textColor="#FF0000" android:visibility="invisible" /> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="4.0" androidrientation="horizontal" androidaddingLeft="30dp" androidaddingRight="30dp" > <ImageView android:id="@+id/ivMovieImage" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_above="@+id/bSave" /> <Button android:id="@+id/bSave" style="@style/ButtonText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:layout_toLeftOf="@+id/space" android:background="@drawable/btn_black_glossy" androidaddingLeft="30dp" androidaddingRight="30dp" android:text="@string/save" /> <Button android:id="@+id/bCancel" style="@style/ButtonText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:layout_toRightOf="@id/bSave" android:background="@drawable/btn_black_glossy" androidaddingLeft="30dp" androidaddingRight="30dp" android:text="@string/cancel" /> <TextView android:id="@id/space" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" /> </RelativeLayout></LinearLayout>\[/code\]