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 :
@Overrideprotected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main);
...
upDownSec("up"); //up.png
}