我的 textView 在我的 DialogBox 上。我有一个所有列表的列表视图,当我单击列表中的一个项目时,会弹出一个带有文本视图的对话框。但每次单击都会出现空指针异常。在 textViewReason.setText(transferPurpose);
if(status.equals("Disapproved"))
{
TextView textViewReason = (TextView)findViewById(R.id.textViewReasonDenied);
textViewReason.setText(transferPurpose);
Dialog formDialog = onCreateDialog(1);
//((TextView)formDialog.findViewById(R.id.textViewReasonDenied)).setText(transferPurpose);
formDialog.show();
}