我有一个相对布局,我想用从凌空下载的图像设置背景图像,这可能吗?我怎么能这样做?
编辑:所以这里是我想在后台加载图片的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/bg_layout"
android:fitsSystemWindows="false"
android:background="@drawable/detail_background" // HERE
tools:context="com.kalianey.oxapp.views.fragments.ProfileFragment">
通常我会通过排球在ImageView中加载图像:
imageView.setImageUrl(user.getCover_url(), imageLoader);
但我不知道如何通过drawable来做到这一点......
答案 0 :(得分:1)
没有提供更多信息。 这是可能的,根据您的图像的格式,它可以很简单。它可以只是relativelayout.setBackground(Drawable)如果它已经是drawable,如果没有,那么你可以转换为一个。这应该是一个可能的答案。