亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android——獲取view的寬高

發布時間:2020-07-16 11:52:03 來源:網絡 閱讀:1142 作者:wauoen 欄目:移動開發
  1. 在activity生命周期方法:onCreate(),onStart(),onResume()中調用View.getWidth()和View.getHeight()方法獲取View的高度是不可行的,因為此時布局沒有加載是不可見狀態。

    還有當view的可見狀態為:GONE,時獲取的寬高也是0;

2. 解決辦法:

(1)直接測量:

private void first() {
		int width = View.MeasureSpec.makeMeasureSpec(0,
				View.MeasureSpec.UNSPECIFIED);
		int height = View.MeasureSpec.makeMeasureSpec(0,
				View.MeasureSpec.UNSPECIFIED);
		textView.measure(width, height);
		int height1 = textView.getMeasuredHeight();
		int width3 = textView.getMeasuredWidth();
		System.out.println("first: 寬: " + width3 + "  高: " + height1);
	}

(2)添加繪制view之前的監聽

private void second() {
		ViewTreeObserver vto = textView.getViewTreeObserver();

		vto.addOnPreDrawListener(new

		ViewTreeObserver.OnPreDrawListener() {

			public boolean onPreDraw() {

				int height = textView.getMeasuredHeight();

				int width = textView.getMeasuredWidth();

				System.out.println("second:  寬:" + width + "  高: " + height);

				return true;
			}

		});
	}

(3)添加整體布局監聽

private void third() {
		ViewTreeObserver vto = textView.getViewTreeObserver();

		vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {

			public void onGlobalLayout() {

				textView.getViewTreeObserver().removeGlobalOnLayoutListener(
						this);

				int height = textView.getMeasuredHeight();

				int width = textView.getMeasuredWidth();
				System.out.println("third:  寬:" + width + "  高: " + height);
			}

		});
	}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

连州市| 桐柏县| 如皋市| 安丘市| 中山市| 凤庆县| 醴陵市| 翁牛特旗| 吐鲁番市| 罗甸县| 勃利县| 广元市| 乌兰察布市| 桑植县| 伊吾县| 东阳市| 晴隆县| 宜君县| 白城市| 吴堡县| 灵武市| 泽普县| 长治市| 故城县| 南开区| 鹿邑县| 遂川县| 德惠市| 介休市| 西畴县| 湖口县| 交城县| 吴堡县| 洪江市| 如东县| 山阳县| 万载县| 凤冈县| 焉耆| 镇康县| 三明市|