How do I make a Radio button display a really long label inside an AlertDialog?
String[] labels = new String[]{"My Super Long Label That Will Result in an ellipses Garbage 1234567890"};
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setSingleChoiceItems(labels, 0 , new DialogInterface.OnClickListener() {...});
AlertDialog alert = builder.create();
alert.show();
When I run the above code, it gets cut off rather than displaying it across multiple lines.