在android中自定义微调器

时间:2012-10-22 06:41:05

标签: android android-spinner baseadapter

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

我正在使用微调器。我想自定义这个微调器。我完成了这件事。我在这里面临一个小问题。

在下图中,您可以看到微调器和该微调器内的文本。现在这里的文字长度并不多,因此它非常适合。但是当文本长度更长时,它会与下拉箭头重叠。enter image description here

提前致谢。

1 个答案:

答案 0 :(得分: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>