I have edittext, checkbox, radiobutton, spinner etc in an activity, Due to which the spinner and radiobutton at the bottom are hidden in the emulator screen.
What can be the best solution for this? Should I use scroll view?
Thanks In Advance...
I have edittext, checkbox, radiobutton, spinner etc in an activity, Due to which the spinner and radiobutton at the bottom are hidden in the emulator screen.
What can be the best solution for this? Should I use scroll view?
Thanks In Advance...
You can use ScrollView so that the View that has no space to get into that...
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
//Your view here..like spinner ,button etc
</TableLayout>
</ScrollView>
Hope this could so