Android Studio layout management problems -
i'm new android studio... i've been trying make simple app. when want put 2 linear layouts in one, 1 of them goes out of frame! don't know if i'm doing right or not. here pictures (the second 1 problem):
1)http://i.imgur.com/2h1hoxk.jpg
2)http://i.imgur.com/5iezhsc.jpg
thanks
from pictures, parent linear layout contains other 2 linear layouts has orientation set "horizontal". must set "vertical" above each other...
in parent linear layout, find this:
android:orientation="horizontal"
change to:
android:orientation="vertical"
Comments
Post a Comment