Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はとを持ってimageViewいlayout_width="match_parent"ます。
imageView
layout_width="match_parent"
私のアダプターgetView()では、これの実際の幅を取得したいのimageViewですが、方法がわかりません。
getView()
を使用してみimageView.getWidth()ましたが、0が返されます。
imageView.getWidth()
ビューはの親グループにアタッチされgetView()ていないため、測定されていないため、幅はゼロです。私が考えることができる唯一の方法parent.getWidth()は、ViewGroupの幅を返すaを実行することです。これは、ビューが親の別のビューの隣に配置されない場合にのみ機能します。これは通常の場合でListViewあるため、あなたの場合にはうまくいくかもしれません。
parent.getWidth()
ListView