Click here to Skip to main content
15,896,201 members
Articles / Mobile Apps / Android

Write a Console App on Android using Java

Rate me:
Please Sign up or sign in to vote.
4.69/5 (10 votes)
29 May 2011Apache5 min read 108.2K   3.4K   39  
Write console apps on Android for testing purposes
/*
 *  Copyright 2011 Seto Chi Lap (setosoft@gmail.com)
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
package com.sss.cmdconsole.builtincmd;

import com.sss.cmdconsole.R;
import com.sss.cmdconsole.common.*;

import android.util.DisplayMetrics;
import android.view.Display;

public class UiCmd 
{
   private UiCmd() { }
   
   public static void showScreenResolution(Display display, IStdOut stdOut)
   {
	   DisplayMetrics metrics = new DisplayMetrics();
   	   display.getMetrics(metrics);
   	
   	   stdOut.writeln(CFunc.getString(R.string.display_height) + ": " + display.getHeight());
   	   stdOut.writeln(CFunc.getString(R.string.display_width) + ": " + display.getWidth());
   	
   	   stdOut.writeln(CFunc.getString(R.string.metrics_density) + ": " + metrics.density);
   	   stdOut.writeln(CFunc.getString(R.string.metrics_densityDpi) + ": " + metrics.densityDpi);
   	   stdOut.writeln(CFunc.getString(R.string.metrics_scaledDensity) + ": " + metrics.scaledDensity);
   	   stdOut.writeln(CFunc.getString(R.string.metrics_heightPixels) + ": " + metrics.heightPixels);
   	   stdOut.writeln(CFunc.getString(R.string.metrics_widthPixels) + ": " + metrics.widthPixels);
   	   stdOut.writeln(CFunc.getString(R.string.metrics_xdpi) + ": " + metrics.xdpi);
   	   stdOut.writeln(CFunc.getString(R.string.metrics_ydpi) + ": " + metrics.ydpi);
   }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Software Developer
Hong Kong Hong Kong
Like programming, reading, watching movies.
Wish to own a book store and a small cafe in the future.

Comments and Discussions