在Android应用程序中模糊的个人资料

时间:2014-02-12 04:55:01

标签: android

我正在显示我的应用用户的Google plus个人资料图片,但图片模糊不清。我无法缩小尺寸,这使得几乎无法识别谁在其中。是否有办法解决此问题我正在从网址获取图片。 这是我的ImageView

<ImageView
    android:id="@+id/profilePicture"
    android:layout_width="200dp"
    android:layout_height="200dp"
    android:contentDescription="hello"
    android:maxHeight="200dp"
    android:maxWidth="200dp" />

1 个答案:

答案 0 :(得分:0)

尝试按照以下方式显示图片,

<ImageView
    android:id="@+id/profilePicture"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:contentDescription="hello"
    android:maxHeight="200dp"
    android:maxWidth="200dp" />