In my android app, I have a large string resource xml file. I want to make reference and reuse declared resources values within String values. Is it possible to have the R
Add a %s to your second resource string (the one that you want to be dynamic) where you want it to be modified. i.e.,
tbl_name create table %s
and in your code use getString() to work the magic,
getString(R.string.ddl, getString(R.string.db_table_name));