0
一般我們設置的背景是這樣活動背景圖像
android:background="@mipmap/bg"
,但我想我的應用程序的大小盡可能地少,所以我想從一個遠程網站 導入圖像假設我想使用此圖片作爲背景:http://www.example.com/bg.png
但
android:background="http://www.example.com/bg.png"
沒有t working
一般我們設置的背景是這樣活動背景圖像
android:background="@mipmap/bg"
,但我想我的應用程序的大小盡可能地少,所以我想從一個遠程網站 導入圖像假設我想使用此圖片作爲背景:http://www.example.com/bg.png
但
android:background="http://www.example.com/bg.png"
沒有t working
使用Picasso Library
加載圖像。
它添加到build.gradle
文件
// picasso
compile 'com.squareup.picasso:picasso:2.5.2'
初始化ImageView
,
ImageView imageView = (ImageView) findViewById(R.id.imageview);
Picasso.with(context).load("http://www.example.com/bg.png").into(imageView);
多數民衆贊成!