justdeko
justdeko

Reputation: 1124

Image scaling for tablets

I have an image I want to display in ImageView in my layout. As I don't want a distorted Image, I use android:scaleType = "center".

It looks good on medium and small devices, on large devices (7" and 10"), it is to small and you can see the borders. How can I prevent this?

Upvotes: 0

Views: 71

Answers (2)

flyingAssistant
flyingAssistant

Reputation: 920

Try with this property:

android:scaleType="centerCrop"

Upvotes: 1

Deepanshu Gandhi
Deepanshu Gandhi

Reputation: 490

Use Big Size Images And use android:scaleType="FitXY"

Upvotes: 0

Related Questions