Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*
 Copyright 2012 lewica.pl
    
 Licensed under the Apache Licence, Version 2.0 (the "Licence");
 you may not use this file except in compliance with the Licence.
 You may obtain a copy of the Licence at
    
 http://www.apache.org/licenses/LICENSE-2.0
    
 Unless required by applicable law or agreed to in writing, software
 distributed under the Licence is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the Licence for the specific language governing permissions and
 limitations under the Licence. 
 */

import android.app.Activity;

import android.view.View;

import android.widget.ScrollView;

public class Main {
    /**
     * E.g. when using previous-next facility you need to make sure the scroll view's position is back at the top of the screen
     */
    public static void scrollToTop(int scrollViewId, Activity activity) {
        ScrollView sv = (ScrollView) activity.findViewById(scrollViewId);
        sv.fullScroll(View.FOCUS_UP);
        sv.setSmoothScrollingEnabled(true);
    }
}