I am completely new to Android, my first attempt is to use a LinearLayout to position several controls, but my emulator screen is not that large to contain all my controls and the output doesn’t display all of them and there is no vertical scroller automatically added.
What should I do to make them all viewable ?
<LinearLayout>
<control_1/>
<control_2/>
///////...
<control_n/>
</LinearLayout>
You need to wrap your layout in a ScrollView. Your code would look like: