Android examples for App:Log
Log as info the specified MeasureSpec in a readable manner.
/**/*from ww w . j av a2 s. c o m*/ * Utility class for android. * * <p> * © Copyright 2010-2013 David Sporn * </p> * <hr> * * <p> * This file is part of <i>The Sporniket Game Library – Platform API for Android</i>. * * <p> * <i>The Sporniket Game Library – Platform API for Android</i> is free software: you can redistribute it and/or modify it under the terms of the * GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your * option) any later version. * * <p> * <i>The Sporniket Game Library – Platform API for Android</i> is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * <p> * You should have received a copy of the GNU Lesser General Public License along with <i>The Sporniket Game Library – * Platform API for Android</i>. If not, see <a href="http://www.gnu.org/licenses/">http://www.gnu.org/licenses/</a>. 2 * * <hr> * * @author David SPORN * */ //package com.java2s; import android.util.Log; import android.view.View.MeasureSpec; public class Main { /** * Log as info the specified {@link MeasureSpec} in a readable manner. * * @param tag * the tag for android logging system. * @param message * the starting message of the log. * @param measureSpec * the measure spec to log. */ public static void dumpMeasureSpec(String tag, String message, int measureSpec) { StringBuilder _measureSpec = new StringBuilder(message); _measureSpec.append(" : "); switch (MeasureSpec.getMode(measureSpec)) { case MeasureSpec.AT_MOST: _measureSpec.append("at most "); break; case MeasureSpec.EXACTLY: _measureSpec.append("Exactly "); break; case MeasureSpec.UNSPECIFIED: _measureSpec.append("Unspecified "); break; } _measureSpec.append(MeasureSpec.getSize(measureSpec)); Log.i(tag, _measureSpec.toString()); } }