91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

武清区| 禄劝| 阿克陶县| 健康| 大方县| 格尔木市| 林周县| 锡林郭勒盟| 乡城县| 郴州市| 宣城市| 阿克| 陆川县| 陆良县| 营山县| 双流县| 天津市| 沁源县| 蓬溪县| 西昌市| 泰宁县| 林芝县| 阿城市| 墨竹工卡县| 镇原县| 涪陵区| 固镇县| 塘沽区| 金堂县| 宿州市| 长宁区| 紫金县| 封丘县| 河间市| 鹤峰县| 井研县| 明水县| 武威市| 美姑县| 乐都县| 桐梓县|