I have a code in Android like this;
public static final String[] URLS = new String[]{"https://www.url1.com/","https://www.url2.com"};
I wanna make this code like this;
public static final String[] URLS = new String[]{"@strings/url_1","@strings/url_2"};
I tried too much code but it didn't work. What can I do about it? Thanks a lot.