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