Possible Duplicate:
Android, getting resource ID from string?
String res = "R.drawable.image1";
I need to get it's INT id. Please help me!
Use this to get resource id:
int picId = getResources().getIdentifier(picName, "drawable", getApplicationContext().getPackageName());
If you want to get the integer
then simply remove the quotes.
int id = R.drawable.image1; // instead of "R.drawable.image1"
That will give you the number.
View view = findViewById(R.drawable.image1);
int id = view.getId();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With