I was trying to understand deeply the difference between @android:id/.. and @+id/.. and I have understood that using @android:id/.. allows you to use an already created id by the android OS, but @+id/.. creates a new id in my R file.
The question is: Is it more efficient, memory wise, to use @android:id/.. whenever it is possible, since this will use already exists id?
I expect that even if the answer is yes, it is more economical, the saved storage can be neglected. But I am keen on understanding.