How to display Toast at center of screen

后端 未结 8 1955
北荒
北荒 2021-01-30 09:48

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();
8条回答
  •  Happy的楠姐
    2021-01-30 10:26

    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()
    }
    

提交回复
热议问题