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.content.Context;
import android.graphics.drawable.BitmapDrawable;

public class Main {
    public static void setActionBarDrawable(Context context, Activity activity, BitmapDrawable background) {
        activity.getActionBar().setBackgroundDrawable(background);
        activity.getActionBar().setDisplayShowTitleEnabled(false);

    }
}