首頁  >  文章  >  Java  >  如何在運行時以程式方式控制 ImageView 大小?

如何在運行時以程式方式控制 ImageView 大小?

Patricia Arquette
Patricia Arquette原創
2024-11-23 00:45:22322瀏覽

How to Programmatically Control ImageView Size at Runtime?

以程式控制 ImageView 尺寸

在運行時設定 ImageView 的寬度和高度需要採用程式設計方法。為此,我們可以使用以下步驟:

設定高度:

// Fetch the LayoutParams, which holds the dimensions of the View
LinearLayout.LayoutParams params = imageView.getLayoutParams();

// Set the height (in pixels)
params.height = 20;

// This step is crucial! After modifying the layout params, request a layout pass to refresh the view
imageView.requestLayout();

重要提示:

如果您在繪製佈局後修改ImageView 的高度,則必須使用requestLayout() 來確保變更已正確套用。

設定寬度:

按照與上方相同的步驟操作,但使用 LinearLayout.LayoutParams 物件的 width 屬性。

params.width = 40;

以上是如何在運行時以程式方式控制 ImageView 大小?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn