DEV Community

WHO’S NEXT????
WHO’S NEXT????

Posted on

What I learned today 5/29/20

Today I learned data binding. I learned it via the Android Udacity course. The way I learned it is that instead using "findbyID" which creates a tougher job during runtime, you can use databinding to call views and assign them things. Instead of newName = findbyId(R.id.tv_Name), newName.text , I learned to use binding.tv_Name.text.

Top comments (0)