タグ

ブックマーク / start-android-sdk.blogspot.com (1)

  • Activity・Viewクラスでのスクリーンサイズ・画面サイズの取得方法

    Android 1.6 How to get the screen size on Activity class. How to get the screen size on View class. Activityクラスの派生クラスでのスクリーンサイズ・画面サイズの取得方法 Viewクラスの派生クラスでのスクリーンサイズ・画面サイズの取得方法 ---- ■Activityクラス上でスクリーンサイズを取得する方法 getSystemService(WINDOW_SERVICE) を使用してスクリーンサイズを取得します。 import android.content.Context; import android.view.Display; import android.view.WindowManager; public class TestActivity extends Activit

    nilab
    nilab 2013/02/19
    Xperia Android 開発環境SDKインストール: Activity・Viewクラスでのスクリーンサイズ・画面サイズの取得方法 : getSystemService(WINDOW_SERVICE) : Display disp = ((WindowManager)context.getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
  • 1