測(cè)量View(一):創(chuàng)建View并測(cè)量

測(cè)量View(二):測(cè)量寬高及真實(shí)寬高 http://www.reibang.com/p/18540e62ae3a
測(cè)量View(三):獲得測(cè)量寬高及真實(shí)寬高 http://www.reibang.com/p/cbd758a5b5cf
先不分析原碼廊驼, 上例子

1. 在onCreate中測(cè)量新建的View

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        TextView textView = new TextView(this);
        int width = textView.getWidth();
        int height = textView.getHeight();
        int measuredWidthAndState = textView.getMeasuredWidthAndState();
        int measuredWidth = textView.getMeasuredWidth();
        int measuredHeight = textView.getMeasuredHeight();
        int measuredHeightAndState = textView.getMeasuredHeightAndState();
    }
Paste_Image.png

結(jié)果后圖恰力,都是0
里面加上內(nèi)容呢?

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        TextView textView = new TextView(this);
        textView.setText("Minicup");
        int width = textView.getWidth();
        int height = textView.getHeight();
        int measuredWidthAndState = textView.getMeasuredWidthAndState();
        int measuredWidth = textView.getMeasuredWidth();
        int measuredHeight = textView.getMeasuredHeight();
        int measuredHeightAndState = textView.getMeasuredHeightAndState();

    }
Paste_Image.png

結(jié)果還都是0
手動(dòng)設(shè)置View的寬高呢柿估?

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        TextView textView = new TextView(this);
        textView.setWidth(200);
        textView.setHeight(200);

        int width = textView.getWidth();
        int height = textView.getHeight();
        int measuredWidthAndState = textView.getMeasuredWidthAndState();
        int measuredWidth = textView.getMeasuredWidth();
        int measuredHeight = textView.getMeasuredHeight();
        int measuredHeightAndState = textView.getMeasuredHeightAndState();

    }

Paste_Image.png

結(jié)果還都是0
換種設(shè)置寬高的方式

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        TextView textView = new TextView(this);
        LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(200, 200);
        textView.setLayoutParams(layoutParams);
        
        int width = textView.getWidth();
        int height = textView.getHeight();
        int measuredWidthAndState = textView.getMeasuredWidthAndState();
        int measuredWidth = textView.getMeasuredWidth();
        int measuredHeight = textView.getMeasuredHeight();
        int measuredHeightAndState = textView.getMeasuredHeightAndState();

    }
Paste_Image.png

結(jié)果都是0

2. 在onCreate中測(cè)量新建的ViewGroup

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        LinearLayout linearLayout = new LinearLayout(this);
        LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(200, 200);
        linearLayout.setLayoutParams(layoutParams);

        int width = linearLayout.getWidth();
        int height = linearLayout.getHeight();
        int measuredWidthAndState = linearLayout.getMeasuredWidthAndState();
        int measuredWidth = linearLayout.getMeasuredWidth();
        int measuredHeight = linearLayout.getMeasuredHeight();
        int measuredHeightAndState = linearLayout.getMeasuredHeightAndState();

    }

Paste_Image.png

結(jié)果與View的一樣

3. 通過(guò)LayoutInflator從XML布局中獲取View

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        View view = LayoutInflater.from(this).inflate(R.layout.layout, null);

        int width = view.getWidth();
        int height = view.getHeight();
        int measuredWidthAndState = view.getMeasuredWidthAndState();
        int measuredWidth = view.getMeasuredWidth();
        int measuredHeight = view.getMeasuredHeight();
        int measuredHeightAndState = view.getMeasuredHeightAndState();

    }

R.layout.layout

<?xml version="1.0" encoding="utf-8"?>
<View xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
</View>
Paste_Image.png

結(jié)果都是0
我們改一下布局的寬高為固定值

<?xml version="1.0" encoding="utf-8"?>
<View xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="300dp"
    android:layout_height="300dp">
</View>
Paste_Image.png

結(jié)果不出意外的也是0

新創(chuàng)建的View或者從布局中填充的布局, 獲得其寬高都為0

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末屈溉,一起剝皮案震驚了整個(gè)濱河市懦砂,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌抽活,老刑警劉巖硫戈,帶你破解...
    沈念sama閱讀 212,294評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異下硕,居然都是意外死亡丁逝,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,493評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門梭姓,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)霜幼,“玉大人,你說(shuō)我怎么就攤上這事誉尖∽锛龋” “怎么了?”我有些...
    開(kāi)封第一講書人閱讀 157,790評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵铡恕,是天一觀的道長(zhǎng)琢感。 經(jīng)常有香客問(wèn)我,道長(zhǎng)探熔,這世上最難降的妖魔是什么驹针? 我笑而不...
    開(kāi)封第一講書人閱讀 56,595評(píng)論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮诀艰,結(jié)果婚禮上柬甥,老公的妹妹穿的比我還像新娘。我一直安慰自己其垄,他們只是感情好苛蒲,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,718評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著捉捅,像睡著了一般撤防。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書人閱讀 49,906評(píng)論 1 290
  • 那天寄月,我揣著相機(jī)與錄音辜膝,去河邊找鬼。 笑死漾肮,一個(gè)胖子當(dāng)著我的面吹牛厂抖,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播克懊,決...
    沈念sama閱讀 39,053評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼忱辅,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了谭溉?” 一聲冷哼從身側(cè)響起墙懂,我...
    開(kāi)封第一講書人閱讀 37,797評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎扮念,沒(méi)想到半個(gè)月后损搬,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,250評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡柜与,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,570評(píng)論 2 327
  • 正文 我和宋清朗相戀三年巧勤,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片弄匕。...
    茶點(diǎn)故事閱讀 38,711評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡颅悉,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出迁匠,到底是詐尸還是另有隱情剩瓶,我是刑警寧澤,帶...
    沈念sama閱讀 34,388評(píng)論 4 332
  • 正文 年R本政府宣布城丧,位于F島的核電站儒搭,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏芙贫。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,018評(píng)論 3 316
  • 文/蒙蒙 一傍药、第九天 我趴在偏房一處隱蔽的房頂上張望磺平。 院中可真熱鬧,春花似錦拐辽、人聲如沸拣挪。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 30,796評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)菠劝。三九已至,卻和暖如春睁搭,著一層夾襖步出監(jiān)牢的瞬間赶诊,已是汗流浹背笼平。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 32,023評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留舔痪,地道東北人寓调。 一個(gè)月前我還...
    沈念sama閱讀 46,461評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像锄码,于是被迫代替她去往敵國(guó)和親夺英。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,595評(píng)論 2 350

推薦閱讀更多精彩內(nèi)容