在android中的微调器中显示数据的问题

时间:2018-12-11 06:00:39

标签: java android spinner

我连续有三个微调器和一个Textview,如下图所示。我的问题是,在最后2个微调器中,它具有包含数十万种货币类型的数据,即使选择了任何内容,它也不会显示在微调器中,因为单词的大小大于微调器的大小,所以我该如何设置前三个字符旋转器中每个单词的数量

  

[1]:https://i.stack.imgur.com/iN9AF.png

1 个答案:

答案 0 :(得分:0)

对于每个微调器,我们都可以为2dp或3dp进行填充,或者完成。

 <LinearLayout
                    android:id="@+id/ln_billable_duration"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_marginRight="5dp"
                    android:layout_weight="0.8"
                    android:background="@drawable/my_border"
                    android:gravity="center">

                    <Spinner
                        android:id="@+id/sp_billable_duration"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:dropDownWidth="wrap_content"
                        android:padding="2dp"/>

                </LinearLayout>

            </LinearLayout>