AlertDialog.Builder a = new Builder(Books.this);
a.setMessage( (body));
a.setPositiveButton( ("شروع مسابقه"), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
startActivity(new Intent(Books.this, Mosabeghe_frist.class));
}
});
a.setNegativeButton( ("بعدا"), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
AlertDialog dialog = a.show();
TextView messageText = (TextView)dialog.findViewById(android.R.id.message);
messageText.setGravity(Gravity.RIGHT);
messageText.setTypeface(typeface);
我必须自己导入所有这些类,它没有标记错误,就在我开始时,gradle告诉我这行有问题,该类没有导入等等。
如何解决此问题?
谢谢