壁画不改变图像

时间:2018-10-04 22:04:57

标签: android xml facebook android-studio fresco

我有一个片段和一个ImageView。我想通过壁画更改Image,但是代码没有任何改变。这是我的代码:

  

我在片段中使用的代码

View view = inflater.inflate(R.layout.profile_fragment, container, false);
Uri uri = Uri.parse("My Picture URL");
SimpleDraweeView draweeView = (SimpleDraweeView) view.findViewById(R.id.profpic);
draweeView.setImageURI(uri);
  

这是片段xml文件中使用的我的图片

<com.facebook.drawee.view.SimpleDraweeView
            android:layout_width="125dp"
            android:layout_height="125dp"
            android:id="@+id/profpic"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="-100dp"/>

0 个答案:

没有答案