Reputation: 15057
i am new to android ,i dont have idea of layouts,where to refer? basic of layout desigining,and how to make the form scrollable ,such things etc
Regards Rakesh shankar.P
Upvotes: 3
Views: 531
Reputation: 129832
I'd say there most of what you need to know is available at Android Developers. Specifically:
In general, I'd say there are two layouts that are used rather frequently:
orientation
. The space available is distributed to the child nodes depending on their weight
.below
and toRightOf
.To make an area scrollable, you simply place it within a ScrollView
Upvotes: 6