I have 4 buttons in my linear layout, and I need to transfer to the first first button.
Normal order
Button 1 | Button 2 | Button 3 | Button 4
But when I call the button1.bringToFront () function, button 1 ends up like
Button 2 | Button 3 | Button 4 | Button 1
How can I solve this problem. The relative layout does not cause this problem, but I have to use LinearLayout, because the buttons will be arranged vertically, and I delete the button in some conditions.
thank
android android-linearlayout
dracula May 23 '13 at 16:28 2013-05-23 16:28
source share