我有与NumberPicker安全问题的对话。长篇文章被切断了。如何解决这个问题?
这是对话框的布局内容
<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>
答案 0 :(得分:0)
我有同样的问题。我设法通过给NumberPicker
大layout_margin
来解决此问题。
添加此行之后:
android:layout_margin="60dp"
我的号码选择器不再截断文本,并且似乎没有布局问题。