0

android界面图片:http ://tinypic.com/view.php?pic=avht6w&s=6

如上图所示,我希望在白色 listView 的底部和顶部有一个小边框。问题是,当我将 tableRow 设置为 android:paddingBottom="20dp" 时,边框永远不会显示在底部。看起来,如果列表视图的高度足够大,那么它就会显示出来(请参阅下面的代码示例以了解)。

我已经测试了一些不同的方法来解决这个问题,一种是在下一个 TableRow (边框 tableRow)中设置 paddingBottom 属性,但它只有在 listView 的高度与屏幕高度精确而不太大时才有效。

为什么要将listView的高度设置为415dp这样的固定数字?好吧,这是由于另一个我不知道如何解决的问题。例如,如果我将 listViews 的高度设置为 fill_parent,则背景将仅覆盖列表中的项目数。我总是希望列表背景从界面底部填充到 20dp。

如果有人有一些想法,我可以如何设法在底部显示边框并始终使列表背景可见,即使它没有填充项目,请发表您的想法!/非常感谢!

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

<TableLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@drawable/orginalbild"
android:gravity="center|top"
android:stretchColumns="1"
android:weightSum="1.0" 
android:fillViewport="true">

<TableRow
    android:background="#000000"
     >
<TextView
    android:layout_marginTop="0.15dp"
    android:layout_width="fill_parent"
    android:layout_height="2dp"
    android:background="#999999"
     android:layout_weight="1">
</TextView>


</TableRow>


<TableRow
    android:background="#999999"

    >
<TextView
    android:background="#999999"
    android:id="@+id/show_task_feedback_title"
    android:layout_width="0dip"
    android:layout_height="28dp"
    android:layout_weight="0.8"
    android:text="@string/LatestFeedbackTitle"
    android:textColor="#ffffff"
    android:textSize="17dp"
    android:shadowColor="#FFFFFF"
    android:layout_marginBottom="0.15dp"
    android:textAppearance="?android:attr/textAppearanceMedium"> 
    </TextView>

   <TextView

        android:layout_width="0dip"
        android:layout_height="28dp"
        android:layout_gravity="center"
        android:layout_weight="0.08"  >
    </TextView>


 <Button
        android:id="@+id/latest_feedback_help_button"
        android:layout_width="0dip" 
        android:layout_height="28dp"
        android:layout_gravity="center"
        android:background="@drawable/help_button"
        android:layout_weight="0.12"
        android:layout_marginBottom="0.15dp"
         />

</TableRow>

<TableRow
android:background="#212421">
<TextView
    android:layout_width="fill_parent" 
    android:layout_height="1dp"
    android:background="#ffffff"
    android:layout_marginTop="0.15dp"
    android:layout_weight="1">
</TextView>
</TableRow>   



<TableRow>
<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0.25" />
</TableRow> 


<TableRow
android:paddingLeft="24dp"
android:paddingRight="24dp">  <--------THE BLACK BRODER AT THE TOP OF THE LISTVIEW

           <TextView
                android:background="#000000"
                android:layout_width="0dip"
                android:layout_height="0.5dp"
                android:layout_weight="1" >
            </TextView>

         </TableRow>

 <TableRow
android:paddingLeft="24dp"
android:paddingRight="24dp"
android:paddingBottom="20dp" <------(paddingBottom attribute which causes the problem)
>
       <ListView

                android:background="#ffffff"
                android:id="@+id/bookmarks_list"
                android:layout_width="0dip"
                android:layout_height="415dp"
                android:gravity="left"
                android:layout_weight="1"
               />
       </TableRow>

  <TableRow>  <---THE BLACK BRODER AT THE BOTTOM OF THE LISTVIEW(not being displayed)

      <TextView
                android:background="#000000"
                android:layout_width="0dip"
                android:layout_height="0.5dp"
                android:layout_weight="1" >
            </TextView>
        </TableRow>

</TableLayout>
4

1 回答 1

0

看看这是否有帮助。

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/orginalbild"
    android:fillViewport="true"
    android:gravity="center|top"
    android:orientation="vertical"
    android:stretchColumns="1"
    android:weightSum="1.0" >

    <TableRow android:background="#000000" >

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="2dp"
            android:layout_marginTop="0.15dp"
            android:layout_weight="1"
            android:background="#999999" >
        </TextView>
    </TableRow>

    <TableRow android:background="#999999" >

        <TextView
            android:id="@+id/show_task_feedback_title"
            android:layout_width="0dip"
            android:layout_height="28dp"
            android:layout_marginBottom="0.15dp"
            android:layout_weight="0.8"
            android:background="#999999"
            android:shadowColor="#FFFFFF"
            android:text="@string/LatestFeedbackTitle"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:textColor="#ffffff"
            android:textSize="17dp" >
        </TextView>

        <TextView
            android:layout_width="0dip"
            android:layout_height="28dp"
            android:layout_gravity="center"
            android:layout_weight="0.08" >
        </TextView>

        <Button
            android:id="@+id/latest_feedback_help_button"
            android:layout_width="0dip"
            android:layout_height="28dp"
            android:layout_gravity="center"
            android:layout_marginBottom="0.15dp"
            android:layout_weight="0.12"
            android:background="@drawable/help_button" />
    </TableRow>

    <TableRow android:background="#212421" >

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="1dp"
            android:layout_marginTop="0.15dp"
            android:layout_weight="1"
            android:background="#ffffff" >
        </TextView>
    </TableRow>

    <TableRow>

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0.25" />
    </TableRow>

    <TableRow
        android:paddingTop="0.5dp"
        android:paddingBottom="0.5dp"
        android:background="#000000"
        android:layout_marginLeft="24dp"
        android:layout_marginRight="24dp"
        android:layout_marginBottom="20dp"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <ListView
            android:id="@+id/bookmarks_list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="#ffffff"
            android:gravity="left"
            android:entries="@array/listitems" />
    </TableRow>

</TableLayout>
于 2012-07-31T20:34:11.520 回答