Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.content.Context;

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

public class Main {
    public static View prepareSpace(int dp, Context ctx) {
        ViewGroup.LayoutParams separator = new ViewGroup.LayoutParams(dp, ViewGroup.LayoutParams.MATCH_PARENT);
        //border set
        View borderVertical = new View(ctx);
        borderVertical.setLayoutParams(separator);
        return borderVertical;
    }
}