Posts by Patrick Favetta • 1 point
2 posts
-
0
votes1
answer152
viewsA: Screen gets disorganized when running
You have to tell each view its position relative to another view, example if on the Button you add the android attribute:layout_below="@id/textView", you are telling the Button "stay below the…
-
0
votes3
answers422
viewsA: How to pick any button through Onclick?
Implement View.Onclicklistener in your Activity, in the onClick method do it Remember to set the buttons Button Bt = (Button) findViewById (R.id.button); Bt.setOnClickListener (this); Public void…