Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Your code needs re-factoring for your requirement.</p> <p>These examples might help you out.</p> <p>1- <a href="http://androidresearch.wordpress.com/2012/01/07/building-a-custom-fancy-listview-in-android/" rel="nofollow">Simple list with arrow to move forward</a></p> <p>2- <a href="http://www.androidhive.info/2012/02/android-custom-listview-with-image-and-text/" rel="nofollow">Advance Custom List with arrow</a></p> <pre><code>Update your Layout! with corresponding image for arrow and variable names! &lt;RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="5dp" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:layout_marginTop="5dp" android:gravity="center_vertical" android:padding="5dip" &gt; &lt;!-- Title Of Song--&gt; &lt;TextView android:id="@+id/title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignTop="@+id/thumbnail" android:layout_toRightOf="@+id/thumbnail" android:text="Name" android:typeface="sans" android:textSize="15dip"/&gt; &lt;TextView android:id="@+id/artist" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@id/title" android:textColor="#343434" android:textSize="10dip" android:layout_marginTop="1dip" android:layout_toRightOf="@+id/thumbnail" android:text="Just gona stand there and ..." /&gt; &lt;ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/arrowImage" android:layout_alignParentRight="true" android:layout_centerVertical="true"/&gt; &lt;/RelativeLayout&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload