Android按钮onClick显示AlertDialog应用程序崩溃

时间:2013-03-12 13:51:36

标签: android fonts dialog message alert

当我按下提交按钮时,我正在尝试显示AlertDialog。

Button submit = (Button) findViewById(R.id.submitButton);
            submit.setOnClickListener(new View.OnClickListener() {
                public void onClick(View view) {
                    AlertDialog.Builder builder = new AlertDialog.Builder(Application1GoodExample.this);
                    builder.setMessage("Your form has been successfully submitted");
                    TextView textView = (TextView) findViewById(android.R.id.message);
                    textView.setTextSize(40);
                    builder.setNegativeButton("Exit", new DialogInterface.OnClickListener() {
                          public void onClick(DialogInterface dialog, int which) {
                              dialog.cancel();           
                        } });

                    builder.show();

                }

            });

我认为它与尝试访问findViewById(android.R.id.message)

有关

我在XML文件中定义了TextView,如下所示:

 <TextView android:id="@+id/message" 
        android:layout_width="285dp"
        android:layout_height="78dp" 
        android:textColor="#000000" 
        android:textSize="45sp" 
        android:gravity="center"
        />

我只想更改默认的AlertDialog消息“您的表单已成功提交”字体大小,但是当我按下“提交”按钮时我的程序崩溃

2 个答案:

答案 0 :(得分:6)

您正在尝试访问android.R,只需删除&#34; android&#34;它应该工作(你的资源在com.yourproject.R,而不是android.R)。

findViewById(android.R.id.message)

答案 1 :(得分:1)

首先,如果要为XML中的TextView设置文本大小,MainActivity中setContentView()中的布局必须包含对它的引用。 其次,你应该用R.id.message替换android.R.id.message。