我有一个简单的C#方法在我的应用程序中显示AlertDialog。对话框显示,但其中没有文字。
我的代码就是这个
public static void Alert(Context context, string title, string message)
{
var builder = new AlertDialog.Builder(context);
builder.SetMessage(message);
builder.SetTitle(title);
builder.SetCancelable(false);
builder.SetPositiveButton(Resource.String.Common_OK, (s, e) => builder.Dispose());
var alert = builder.Create();
alert.Show();
}
标题和字符串都包含文本,上下文也没问题。
我不确定这是否是Xamarin.Android错误或ICS发生变化的错误