Android ListView GUI困难

时间:2012-02-22 23:39:49

标签: android android-layout android-listview android-xml android-gui

http://i.stack.imgur.com/4Irb3.png

点击上面的链接进行截屏。

好的,所以我在编辑我的xml布局时遇到一些问题,让这个列表看起来不错。基本上我希望每行信息都填满整个列表行,这样你在每行之间看到的空白区域就不存在了。我曾尝试在row.xml和main.xml中操作多个不同的属性,但到目前为止还没有任何工作。有人有什么建议吗?感谢

row.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:paddingTop="4dip"
     android:paddingBottom="6dip"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:textColor="@color/white" 
     android:orientation="horizontal">

     <TextView android:id="@+id/position"
         android:textColor="@color/white"
         android:background="@color/black"
         android:layout_width="20dip"
         android:textSize="14dip"
         android:gravity="center"
         android:layout_height="fill_parent"/>

     <TextView android:id="@+id/team_name"
         android:textColor="#000000"
         android:background="@color/grey"
         android:gravity="center"
         android:layout_width="70dip"
         android:textSize="14dip"
         android:layout_height="fill_parent" 
         android:layout_weight="1"/>

     <TextView android:id="@+id/games_played"
         android:textColor="#000000"
         android:background="@color/cyan"
         android:layout_width="5dip"
         android:textSize="14dip"
         android:gravity="center"
         android:layout_height="fill_parent"  
         android:layout_weight="1"/>

      <TextView android:id="@+id/points"
         android:textColor="#000000"
         android:background="@color/turquoise"
         android:layout_width="5dip"
         android:textSize="14dip"
         android:gravity="center"
         android:layout_height="fill_parent"  
         android:layout_weight="1"/>
</LinearLayout>

main.xml中

<?xml version="1.0" encoding="utf-8"?>
    <TableLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="@color/white"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:stretchColumns="1">
    <TableRow>
     <TextView 
        android:text="Team"
        android:background="@color/red"
        android:textColor="@color/white" 
        android:gravity="right"
        android:layout_width="wrap_content" />
    <TextView 
        android:text="Games Played"
        android:background="@color/red"
        android:textColor="@color/white" 
        android:gravity="center"
        android:layout_width="wrap_content"
        android:paddingLeft="22dip" />

    <TextView 
        android:text="Points"
        android:background="@color/red"
        android:textColor="@color/white" 
        android:gravity="left"
        android:layout_width="wrap_content"
        android:paddingRight="18dip"/>
    </TableRow>

    <TableRow >
    <ListView
        android:background="@color/white" 
        android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" 
        android:layout_weight="1"/>
    </TableRow>
</TableLayout>

2 个答案:

答案 0 :(得分:0)

您是否设置了android:minHeight道具以及LinearLayout的android:layout_height?这将修复行高。

答案 1 :(得分:0)

我想通了,我不得不删除线性布局中的填充属性,不敢相信我以前没弄明白!