hi
i found this thread: https://stackoverflow.com/questions/4954130/center-message-in-android-dialog-box
can we use it in b4x with MsgboxAsync?
thanx
i found this thread: https://stackoverflow.com/questions/4954130/center-message-in-android-dialog-box
can we use it in b4x with MsgboxAsync?
B4X:
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Title");
builder.setMessage("Message");
builder.setPositiveButton("OK", null);
AlertDialog dialog = builder.show();
// Must call show() prior to fetching text view
TextView messageView = (TextView)dialog.findViewById(android.R.id.message);
messageView.setGravity(Gravity.CENTER);
thanx