Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.app.Activity;

import android.view.Window;

public class Main {
    public static void setLayout(Activity context, int layout, int titleBar) {
        context.requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
        context.setContentView(layout);
        context.getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, titleBar);
    }
}