I have a problem with my xml for android.I have this layout to use it in each line of a Listview (that works fine).I want to put two lines (head and body) of text, and align Right of the first line I have to put two ImageView. (Also have first of all a hidden textView)Something like this:
My problem is when I try to put both imageViews (with only one it shows fine, but with two don't show nothing).this is my xml:\[code\]<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" androidrientation="vertical" > <TextView android:id="@+id/TvIdGroup" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="12sp" android:textStyle="bold" android:visibility="gone" /> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" androidrientation="horizontal" > <TextView android:id="@+id/TvName" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:textSize="30sp" android:textStyle="bold" /> <ImageView android:id="@+id/ImgNewConvGroup" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="right" android:src="http://stackoverflow.com/questions/15817773/@drawable/new_messages" /> <ImageView android:id="@+id/ImgNewGroup" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="right" android:src="http://stackoverflow.com/questions/15817773/@drawable/new_group" /> </LinearLayout> <TextView android:id="@+id/TvDescription" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="22sp" android:textStyle="normal" /></LinearLayout>\[/code\]sorry for my english and thank you in advance!
My problem is when I try to put both imageViews (with only one it shows fine, but with two don't show nothing).this is my xml:\[code\]<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" androidrientation="vertical" > <TextView android:id="@+id/TvIdGroup" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="12sp" android:textStyle="bold" android:visibility="gone" /> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" androidrientation="horizontal" > <TextView android:id="@+id/TvName" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:textSize="30sp" android:textStyle="bold" /> <ImageView android:id="@+id/ImgNewConvGroup" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="right" android:src="http://stackoverflow.com/questions/15817773/@drawable/new_messages" /> <ImageView android:id="@+id/ImgNewGroup" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="right" android:src="http://stackoverflow.com/questions/15817773/@drawable/new_group" /> </LinearLayout> <TextView android:id="@+id/TvDescription" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="22sp" android:textStyle="normal" /></LinearLayout>\[/code\]sorry for my english and thank you in advance!