In Android I want to display a toast message at the bottom of the screen, I tried this:
Toast.makeText(test.this,\"bbb\", Toast.LENGTH_LONG).show();
Showing/ Setting text gravity at center (Horizontally) in koltin
fun Context.longToast(msg: String) { Toast.makeText(this, msg, Toast.LENGTH_LONG) .apply { view.findViewById(android.R.id.message)?.gravity = Gravity.CENTER } .show() }