Я пытаюсь отобразить путь URL в текстовом представлении и выделить его на экране. Но по какой-то причине его не отображается. Я думаю, что мой код правильный.
Где я получаю URL и прикрываю строку (это в сервисе):
String path = ((PlaylistFile)playlistItems.get(currentPlaylistltemNumber)).getFilePath();
Log.d(TAG, "got the path");
//String[] path2 = path.split("/");
Log.d(TAG, "split the path");
artistInfoBOJ = path;
Log.d(TAG, "set to artist info boj");
Затем я создаю текстовое представление в другом классе и связываю его с текстом:
//artist info stuff
this.textView = (TextView)findViewById(R.id.artistViewBOJ);
Log.d(TAG,"create the text view");
//textView.setMarqueeRepeatLimit(-1);
test = BOJAudioService.artistInfoBOJ;
Log.d(TAG, "set test = to string");
textView.setText(test);
Log.d(TAG,"set text to text view");
что появляется в моем журнале cat:
08-04 12:22:44.574: DEBUG/BOJAudioActivity(17287): create the text view
08-04 12:22:44.574: DEBUG/BOJAudioActivity(17287): set test = to string
08-04 12:22:44.574: DEBUG/BOJAudioActivity(17287): set text to text view
08-04 12:22:44.655: WARN/KeyboardStateImpl(253): EditorInfo provided is null or not valid, defaulting to dumb mode!
08-04 12:22:45.104: DEBUG/dalvikvm(17287): GC_CONCURRENT freed 95K, 50% free 2850K/5639K, external 2569K/2982K, paused 25ms+5ms
08-04 12:22:45.574: DEBUG/BOJAudioService(17287): got the path
08-04 12:22:45.574: DEBUG/BOJAudioService(17287): split the path
08-04 12:22:45.574: DEBUG/BOJAudioService(17287): set to artist info boj
Есть идеи, что может быть не так?