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.
タブごとに異なる画像を使用しています。しかし、画像はタブを完全に覆うのに適していません。タブ全体を画像で覆うにはどうすればよいですか?
ありがとう、Sowmya
タブに ImageView を配置して、match_parent に設定してみてください。
imageView.setScaleType(ScaleType.FIT_XY);
または XML:
android:scaleType="centerCrop";
アスペクト比を維持するには、次のことを試してください。
setScaleType(ScaleType.CENTER_CROP);