I referred this --> https://stackoverflow.com/a/31367723/12553303
I tried above solution but it is not working --> not displaying that drawable for few second
here is my code:
buynow.setOnClickListener(object : View.OnClickListener{
override fun onClick(v: View?) {
// set the color red first.
buynow.setBackgroundResource(R.drawable.mybuttonred)
// change to original after 5 secs.
Handler().postDelayed(Runnable { buynow.setBackgroundResource(R.drawable.mybutton)
Toast.makeText(applicationContext,"ksjdf",Toast.LENGTH_LONG).show()
},
5000)
}
})
Even the toast is not working on click
what I am missing?