テキストビューにURLパスを表示して、画面上にマーキーしようとしています。しかし何らかの理由でそれは表示されません。私のコードは正しいと思います。Android表示テキストビューのURLが表示されない
私は(これはサービスである)のURLを取得し、文字列にcovertingてる:
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");
私のログの猫に表示される内容:
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
間違っている可能性がどのような任意のアイデア?
いただきました問題が何であるかをテスト参照してくださいするには?あなたは例外を投稿できますか?また、デバッグとステップスルーがテストがnullでないことを確認します。 – Jack
@Jack。テキストは表示されません。私は私のログの猫に表示されるものを追加しました。しかし、すべてが正常に実行されているようだ。 – Splitusa