1

我已经完成了关于 Spinner 的教程([http://developer.android.com/resources/tutorials/views/hello-spinner.html])。但是,如果文本比行星名称长得多,则在单击微调器后,显示的文本会被截断,不会完整显示。

有谁碰巧知道如何使较长的文本分几行显示?

单击微调器后,文本将显示在名为 CheckedTextViews 的对象表中。也许应该修改其中的一些偏好——这只是一个快速的想法。

很高兴得到任何支持。

4

1 回答 1

0

这也很有效。

<LinearLayout 
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="350dp"
 android:layout_height="wrap_content">

<TextView 
 android:id="@android:id/text1"
 style="?android:attr/spinnerDropDownItemStyle"
 android:layout_width="match_parent"
 android:layout_height="50dp"
 android:ellipsize="marquee"
 android:gravity="center_vertical"
 android:singleLine="false" />
</LinearLayout>
于 2013-04-01T18:34:36.287 回答