这是我想要实现的目标:
我在 table 上有很多表格行。每行应该有两个文本 View ,产品标题和副标题在彼此之上(副标题尚未实现)。应该左对齐。在右边,我想要一个微调器来选择数量。

文本来自数据库,当然长度不同。

这是我到目前为止想出的:

<ScrollView android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1">

   <TableLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:id="@+id/barmenu"
      android:background="#99ffff"
      android:scrollbars="vertical">

      <TableRow
         android:layout_height="wrap_content"
         android:background="#ffff99"
         android:layout_width="match_parent">

         <RelativeLayout
            android:layout_width="match_parent"
            android:background="#0000ff">

            <TextView
               android:id="@+id/productTitle"
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:background="#88ffff"
               android:ellipsize="end"
               android:padding="2dp"
               android:singleLine="true"
               android:text="Product name"
               android:textColor="#000000"
               android:gravity="left"
               android:textSize="13sp"
               android:textStyle="bold" />

            <Spinner
               android:gravity="right"
               android:layout_height="40dp"
               android:layout_toRightOf="@id/productTitle"
               android:width="100dp"
               android:layout_width="wrap_content" />
         </RelativeLayout>
      </TableRow>
      <TableRow
         android:layout_height="wrap_content"
         android:background="#ffff99"
         android:layout_width="match_parent">

         <RelativeLayout
            android:layout_width="match_parent"
            android:background="#0000ff">

            <TextView
               android:id="@+id/productTitle2"
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:background="#88ffff"
               android:ellipsize="end"
               android:padding="2dp"
               android:singleLine="true"
               android:text="Some long long long long name"
               android:textColor="#000000"
               android:gravity="left"
               android:textSize="13sp"
               android:textStyle="bold" />

            <Spinner
              android:gravity="right"
              android:layout_height="40dp"
              android:layout_toRightOf="@id/productTitle2"
              android:width="100dp"
              android:layout_width="wrap_content" />
         </RelativeLayout>
      </TableRow>
   </TableLayout>
</ScrollView>

截屏:

第一个问题是 RelativeLayout 没有填充表格行的宽度。第二个问题:微调器没有正确对齐。

我错过了什么?

此致
艾伦

最佳答案


将此行添加到您的 ScrollView 属性中,您就完成了 :)

关于java - 带有 MATCH_PARENT 的 RelativeLayout 不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10290072/

10-12 02:30