如何在imageview中设置中心(70%)的图像

时间:2015-07-21 11:50:01

标签: android

我面临一个问题。问题是我不能设置70%的图像中心部分和图像来自服务器(网址),所以如何在图像视图中设置它(在列表中)。你能告诉我怎样才能解决这个问题。

这是我需要的屏幕截图

enter image description here

这是原始图片

enter image description here

虽然我将图像显示为

enter image description here

...谢谢

1 个答案:

答案 0 :(得分:0)

您需要中心缩放您的图片。这可以通过以下方式实现:

android:scaleType="centerCrop"

在X和Y方向应用缩放以显示70%图像。要显示70%的图像,图像应放大

android:scaleX="1.3f"
android:scaleY="1.3f"

您可以通过更改1.3f

进行检查