我用意图打开用户手机的画廊,现在我需要将选定的图像设置为我的活动的墙纸。或者在我的活动上将图像设置为 ImageView。而不是设置为手机的墙纸。有人可以帮助我吗?这是我到目前为止使用的代码..我可以选择图像。但在那之后没有任何反应。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
Button chooseImg=(Button) findViewById(R.id.btnChooseImg);
chooseImg.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent img=new Intent();
img.setType("image/*");
img.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser
(img, "Select Picture"),SELECT_PICTURE);
Object tag=v.getTag();
Integer rId=(Integer) tag;
img.putExtra("bgImage", rId);
try{
imgLayout=(ImageView) findViewById(R.id.bgImg1);
int imgId=img.getExtras().getInt("bgImage");
imgLayout.setBackgroundResource(imgId);
}
catch(Exception e){
Toast.makeText(getApplicationContext(), "nope", Toast.LENGTH_SHORT).show();
}
}
});
}