I have 5 different videos in my raw folder in Android project made with Eclipse, but the problem is that
String stringPath1 = "android.resource://"+getPackageName()+"/"+R.raw.firstVideo;
String stringPath2 = "android.resource://"+getPackageName()+"/"+R.raw.secondVideo;
when I display stringPath1 and stringPath2 in textview they are the same (R.raw._ is the same int). Therefore when I try to change videoPlayer path the path does not change. What could be the reason for that?