プログラムによる 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 中国語 Web サイトの他の関連記事を参照してください。