Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.view.View;
import android.view.ViewGroup;

import android.widget.FrameLayout.LayoutParams;

import android.widget.ScrollView;

public class Main {
    public static void setScrollViewHeightBasedOnChild(ScrollView scrollView) {
        View child = scrollView.getChildAt(0);
        ViewGroup.LayoutParams params = (LayoutParams) scrollView.getLayoutParams();
        params.height = child.getHeight();
        scrollView.setLayoutParams(params);
    }
}