ユーザーの電話のギャラリーを開く意図を使用しましたが、選択した画像をアクティビティの壁紙として設定するか、電話の壁紙として設定するのではなく、アクティビティの 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();
}
}
});
}