add Component to ScrollView - Android android.widget

Android examples for android.widget:ScrollView

Description

add Component to ScrollView

Demo Code

import android.view.View;
import android.widget.ScrollView;

public class Main {

  public static void addComponent(ScrollView parent, View child) {
    parent.addView(child);//from   w  ww  .  j  a  va 2 s . co m
  }

}

Related Tutorials