Android examples for User Interface:Layout
Set null layout view.
//package com.java2s; import android.view.View; public class Main { /**//from ww w.ja v a2s .com * Set null view. * * @param pview */ public static void setNullLayout(View pview) { if (pview != null) { pview.setBackgroundDrawable(null); pview.setBackgroundResource(0); pview.destroyDrawingCache(); } } }