我可以在imageview中显示来自url的图像,我也可以将其设置为壁纸..但我会创建类似nova启动器或google启动器方法来设置壁纸。我的意思是全屏显示图像,您可以选择所需的位置。我的意思是在下面的屏幕中:
这是我现在用来设置壁纸的代码:
Button buttonSetWallpaper = (Button)findViewById(R.id.set);
ImageView imagePreview = (ImageView)findViewById(R.id.preview);
imagePreview.setImageResource(R.drawable.five);
buttonSetWallpaper.setOnClickListener(new Button.OnClickListener(){
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
WallpaperManager myWallpaperManager
= WallpaperManager.getInstance(getApplicationContext());
try {
myWallpaperManager.setResource(R.drawable.five);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}});