NumberPicker中的文本被截断

时间:2015-10-09 08:39:16

标签: android numberpicker

我有与NumberPicker安全问题的对话。长篇文章被切断了。如何解决这个问题?

enter image description here

这是对话框的布局内容

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp">

<NumberPicker
    android:id="@+id/numberPicker"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_marginBottom="10dp" />
<com.aperto.ext.edekaapp.ui.CustomFontButton
    android:id="@+id/reg_fields_number_dialog_button"
    style="@style/BlueButton.Big"
    android:layout_width="match_parent"
    android:paddingBottom="10dp"
    android:paddingTop="10dp"
    android:text="@string/reg_fields_number_dialog_button_text" />
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

我有同样的问题。我设法通过给NumberPickerlayout_margin来解决此问题。

添加此行之后:

android:layout_margin="60dp"

我的号码选择器不再截断文本,并且似乎没有布局问题。