Android警报对话框列表文字太小

时间:2014-07-27 15:57:17

标签: android dialog selection alert

我的问题是我可以在Linie 1和Linie 5之间选择的微调器太小了。微调器的文本和列都非常小,我还没有办法解决它。但通常在警告对话框之外,微调器的列与选择的列一样大(第一个" Linie 1"在下图中)。

enter image description here

Java代码:

 AlertDialog.Builder builder = new AlertDialog.Builder(this);

            builder.setView(promptsView);
            builder.setTitle("Linie auswählen:");
            builder.setNegativeButton( "Abbrechen", null );
            builder.setPositiveButton( "Ok", new Dialog.OnClickListener() {

                @Override
                public void onClick(DialogInterface dialog, int which) {

                }
            });

            // create alert dialog
            final AlertDialog alertDialog = builder.create();
            // show it
            alertDialog.show();
            alertDialog.setCanceledOnTouchOutside(false);

提示的布局视图:

<?xml version="1.0" encoding="utf-8"?>

    android:layout_width="match_parent"
    android:layout_height="match_parent" >

<Spinner
    android:id="@+id/spinner1"
    android:layout_width="fill_parent"
    android:layout_height="60dp"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
     />

</RelativeLayout>

0 个答案:

没有答案