Android ListView单元格图像被切断

时间:2011-10-05 19:46:55

标签: android listview

无论我尝试使用LinearLayout,RelativeLayout等,我的最后一张图片都不会显示。 id / arrowImage不显示。这应该很简单,与它斗争一小时。

<RelativeLayout   xmlns:android="http://schemas.android.com/apk/res/android"   
android:id="@+id/list_cell"   
android:layout_width="wrap_content"   
android:layout_height="150px"
android:background="@drawable/round">
<ImageView
    android:id="@+id/mainImage"
    android:layout_width="140px"
    android:layout_height="140px"
    android:layout_alignParentLeft="true"     
    android:layout_alignParentTop="true"                    
    />                                  
<TextView
    android:id="@+id/mainText"
    android:layout_width="wrap_content"          
    android:layout_height="wrap_content"
    android:layout_toRightOf="@id/mainImage"
    android:layout_alignParentTop="true"
    android:paddingLeft="3dip"
    android:paddingRight="2dip"
    android:textSize="16dip"
    android:textColor="#000000"
    />
<ImageView
    android:id="@+id/arrowImage"
    android:src="@drawable/mainArrow"
    android:layout_toRightOf="@id/mainText"
    android:layout_width="wrap_content"          
    android:layout_height="fill_parent"
    android:layout_gravity="center" 
    android:padding="3px"       
     /> 
</RelativeLayout>

2 个答案:

答案 0 :(得分:1)

您的id / mainText可能正在将图像推到可见区域之外。 尝试放一个简短的文字或根本没有,并确保drawable / mainArrow不是太大。

一旦它可见,您可以随意开始修复它,无法提供精确的解决方案,因为您没有告诉您想要实现的目标。

答案 1 :(得分:0)

好的,这有效,我抛弃了相对布局......

父LinearLayout中的LinearLayout内的TableView:

<?xml version="1.0" encoding="UTF-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:background="@drawable/round"
android:id="@+id/list_row_lin_layout">
<LinearLayout   xmlns:android="http://schemas.android.com/apk/res/android"   
    android:id="@+id/list_cell"   
    android:layout_width="wrap_content"   
    android:layout_height="wrap_content"
    android:padding="6dip">
    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_margin="5dip"
        android:stretchColumns="1">
            <TableRow>
                <ImageView
                    android:id="@+id/mainImage"
                    android:layout_width="140px"
                    android:layout_height="140px"
                    android:gravity="left"                  
                    />                                  
                <TextView
                    android:id="@+id/mainText"
                    android:layout_width="fill_parent"          
                    android:layout_height="wrap_content"
                    android:paddingLeft="3dip"
                    android:paddingRight="2dip"
                    android:textSize="16dip"
                    android:textColor="#000000"
                    android:background="#333333"
                    />
                <ImageView
                    android:id="@+id/arrowImage"
                    android:src="@drawable/mainArrow"
                    android:layout_width="fill_parent"          
                    android:layout_height="32px"
                    android:layout_gravity="center" 
                    android:gravity="right"
                    android:padding="3px" 
                    android:background="#FBEC5D"      
                     /> 
             </TableRow>
         </TableLayout>
    </LinearLayout>
</LinearLayout>