我可以在图像视图中显示来自 url 的图像,我也可以将其设置为壁纸。但我会创建类似 nova 启动器或谷歌启动器方法来设置壁纸。我的意思是全屏显示图像,你可以选择你想要的位置。我的意思是在下面的屏幕中:
这是我现在用来设置壁纸的代码:
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();
}
}});