hey question : I have an id in my xml, and I’m try...
# android
y
hey question : I have an id in my xml, and I’m trying to refactor an ID. For example
@+id/driving
to
@+id/driving_view
. I’m using kotlin android extensions so in my activity I have a reference to
driving
as the view. I also have a presenter that has a property called
driving
. I have a statement that’s
driving.isActivated = presenter.driving
I used android studio’s refactor tool to change the id to
driving_view
but my statement turned into this
driving_view.isActivated = presenter.@+id/driving_view
Any ideas about this? Is this a bug?