I am trying to make the ListView string look like this:
| Text-Text-Text <ImageButton> |
When you click the image button on the right edge. How can i do this? Here is the current layout code I'm using. What am I doing wrong?
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/layercontainer" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="#699"> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:layout_gravity="left"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="YO HOW SI IT GOESSDA" /> </LinearLayout> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:layout_gravity="right"> <ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/trash" /> </LinearLayout> </LinearLayout>
My code currently produces the following: 
android android-layout android-listview android-xml
Guynoir
source share