Home > Blockchain >  Why is everything in one heap in the Android Studio emulator?
Why is everything in one heap in the Android Studio emulator?

Time:10-23

I am learning Android Studio.

Making a calculator.

Why is everything (Summ button and fields for num 1, 2 and result) in one heap in the Android Studio emulator?

enter image description here

CodePudding user response:

Your xml layout information would probably help with diagnosing problems, Unconstrained views will all appear in top left corner. if using constraintLayout, drag views to desired position in design View and set constraints, or use the magic wand. Hope that helps ):

  • Related