1

I am working with a restaurant application and i want Veg Non-Veg image just after the food name. I have used relative layout but couldn't able to achieve. See Image I want to achieve this. Thanks in advance.

Manpreet
  • 31
  • 9

1 Answers1

1

Try using a custom view like this one;

<?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="horizontal">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:id="@+id/item_name"
        android:layout_weight="1"/>
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:id="@+id/item_image"/>
</LinearLayout>

Then your application will need an adapter to display the contents in the list or whatever view you want to display.