5

我正在尝试在 AlertDialog 中设置消息的链接文本颜色。但是当我尝试 findViewById 时,我的应用程序崩溃了。我究竟做错了什么?我是否需要在活动的 XML 中包含消息?

final AlertDialog d =  new AlertDialog.Builder(new ContextThemeWrapper(SplashPage.this, R.style.Theme_Sherlock_Light_Dialog))
            .setIcon(android.R.drawable.ic_dialog_info).setTitle(getString(R.string.termsTitle))
                //.setView(message).setCancelable(false)
                .setMessage(Html.fromHtml(getString(R.string.terms))).setCancelable(false)
                .setPositiveButton(getString(R.string.accept), new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialogInterface, int i) {
                        app.setTermsAccepted(true);
                        dialogInterface.dismiss();

                        Intent intent = new Intent(SplashPage.this, LoginPage.class);
                        startActivity(intent);
                    }
                }).create();

        //FAILING: TextView TV = (TextView)d.findViewById(android.R.id.message);
        //TV.setLinkTextColor(Color.MAGENTA);
4

2 回答 2

5

我查看了 AlertDialog 文档,似乎当您调用它的方法时,它会搜索您在onStart 方法中处理的 XML(http://developer.android.com/reference/android/app/Dialog.html# findViewById%28int%29)。相反,只需调用您的活动的findViewById 方法(例如,如果这是在活动类中,只需调用:

TextView TV = (TextView) findViewById(android.R.id.message);

应该管用。)

于 2013-02-12T03:49:12.157 回答
2

如果您使用的是 DialogFragment,则可以在 DialogFragment.onStart() 方法之后访问它,这在之前的答案中没有解决。

@Override
public void onStart() {
super.onStart();
    final TextView textView = (TextView) getDialog().findViewById(android.R.id.message);
    //Do something!
}
于 2014-05-21T21:06:07.510 回答