Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android常見尺寸的獲取

Android常見尺寸的獲取

編輯:關於Android編程

代碼:

                //獲取控件尺寸(控件尺寸只有在事件裡面可以獲取到)
                TextView mTV = (TextView) findViewById(R.id.iv_view);
                int width = mTV.getWidth();
                int height = mTV.getHeight();

                //獲取圖片尺寸
                Drawable drawable = ContextCompat.getDrawable(this, R.drawable.about_logo);
                int width2 = drawable.getIntrinsicWidth();
                int height2 = drawable.getIntrinsicHeight();

                //獲取屏幕尺寸
                DisplayMetrics dm = new DisplayMetrics();
                getWindowManager().getDefaultDisplay().getMetrics(dm);
                int width3 = dm.widthPixels;
                int height3 = dm.heightPixels;

結果:

PS:單位都是像素
這裡寫圖片描述

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved