0

喂。我是android平台的新手。我有个问题。

我正在使用微调器。我想定制这个微调器。我已经完成了。我在这里面临一个小问题。

在下图中,您可以看到微调器和该微调器中的文本。现在这里的文本长度并不多,因此它非常适合。但是当文本长度更长时,它会与下拉箭头重叠。在此处输入图像描述

提前致谢。

4

1 回答 1

1

您可以尝试使用 LinearLayout,为箭头留出空间并使用 layout_weight 为文本留出剩余空间。如果内容可以超过一行,您还可以考虑在 TextView 上使用省略号。

布局 XML 看起来像这样(我还没有测试)

 <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <TextView
        android:layout_weight="1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
    >
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right">
</LinearLayout>
于 2012-10-22T06:55:49.537 回答