tags:

views:

15

answers:

1

In my tableview i need to add the scroll view for the particular rows . Is there any way to create like this in android?

A: 

did you try to create a scrollview dynamically and add it in your TableLayout? something like that :

ScrollView sv = new ScrollView(this);
    ScrollView.LayoutParams lp2 = new ScrollView.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
    sv.setLayoutParams(lp2);
yourTable.addView(sv);
Sephy