Android examples for Activity:Activity Background
set Activity Background Color
//package com.java2s; import android.app.Activity; import android.content.Context; import android.graphics.drawable.ColorDrawable; public class Main { public static void setBackgroundColor(Context context, Activity activity, int color) { activity.getWindow()// w ww. j ava2s.c om .getDecorView() .setBackground( new ColorDrawable(context.getResources().getColor( color))); } }