以程式控制 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中文網其他相關文章!