The string title cannot be static because of the intent.. The string URL has to be static for the usage of it.. This means i get the error when i try to add a non-static string to a static string. how can i make it work?
Error: Cannot make a static reference to the non-static field title
Intent i = getIntent();
String title = i.getStringExtra("title");
static final String URL = "http://csddata.site11.com/dynamic.php?cat=" + title;
Thanks.