🙂 İNSANLARIN EN HAYIRLISI INSANLARA FAYDALI OLANDIR 🙂

Ramazan HABER / Android RMOS / Resources NotFoundException File res drawable up.png from xml type xml resource ID #0x7f0700ba hatası

1-) Android RMOS - Resources NotFoundException File res drawable up.png from xml type xml resource ID #0x7f0700ba hatası

 

Resources$NotFoundException: File res/drawable/up.png from xml type xml resource ID #0x7f0700ba hatası

 

DRAWABLE DA RESİMLERİ BU ŞEKİLDE YÜKLERSEN HATA GİDER

 

 

kaynak : https://stackoverflow.com/questions/8642823/using-setimagedrawable-dynamically-to-set-image-in-an-imageview

 

public void upDownSec(String StringGenerated) {
    
int id = getResources().getIdentifier("com.ramazan.rmosposx:drawable/" + StringGenerated, null, null);
    
imageView2.setImageResource(id);
}

 

 

KULLANIMI :

 

@Override
protected void onCreate(Bundle savedInstanceState) {
    
super.onCreate(savedInstanceState);
    setContentView(R.layout.
activity_main);

    ...

    ...

    upDownSec("up"); //up.png

 

}

 

 2021 Mart 10 Çarşamba
 436