instead of using the below code
channels = getResources().getStringArray(R.array.channellist);
i want to make this arrayname flexible like the below code
Bundle values = getArguments();
channel= this.getArguments().getString("Category");
String name = "R.array."+channel+"list";
channels = getResources().getStringArray(name);
is this possible?