Posts

Get screen resolution of Android device

DisplayMetrics ia a structure describing general information about a display, such as its size, density, and font scaling.   package com.GetScreenResolution;   import android.app.Activity; import android.os.Bundle; import android.util.DisplayMetrics; import android.widget.TextView;   public class GetScreenResolution extends Activity {      /** Called when the activity is first created. */      @Override      public void onCreate(Bundle savedInstanceState) {          super .onCreate(savedInstanceState);          setContentView(R.layout.main);          TextView screenWidth = (TextView)findViewById(R.id.screenwidth);          TextView screenHeight = (TextView)findViewById(R.id.screenheight);     ...