Add scroll bar for linear layout?
I need to add a scroll for linear layout.I use the following code to create the linear layout.But it's not working
LinearLayout llay=new LinearLayout(context);
llay.setVerticalScrollBarEnabled(true);
If i use the following lines i will get the Scrollbar.
ScrollView sc=new开发者_StackOverflow ScrollView(context);
sc.addView(llay);
But I need to add scroll for the Linear layout without using ScrollView. Thanks in advance !!!
You should use a ScrollView
. Please look at this short tutorial on how to do it:
Android Scrollview Exampleew
精彩评论