I want to scroll the comments section,
<RelativeLayout...>
   <LinearLayout
          id = "@+id/holder"....>
          <ScrollView..>
               <TextView ....commetns/>
          </ScrollView>
    </LinearLayout>
    <ListView
          layout_below="@id/holder.....>
     </ListView>
</RelativeLayout>
but the listview is not allowed to scroll the textview contents.I know the android is not allowed to use both listview and scrollview in a same viewgroup but eventhough my requirement is like this.Please help me out..........
