开发者

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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜