Here i am pasting my Layout file : may be question has been asked so many times but please help me out friends
<ImageView
android:id="@+id/productImageId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/products_category" />
<RelativeLayout
android:id="@+id/linearView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/productType"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/productName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/productRating"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge" />
</RelativeLayout>
Now what i want is image should be in left and text in right . Image1 name Image1 type Iamge1 rating
Image 1 is a single image as you can see the above but my text is displaying below the image in single line e.g
Image1 name type rating
Can anyone tell me what i am missing or where i should correct my layout file. Thanks for considering.