[android-developers] Streaming video over RTMP

2012-06-12 Thread Dmitry Kazakov
Hello, I am programming android client that would show video from web camera in real time. The issue is that I get this stream over RTMP protocol. It seems that nobody knows an easy way to do that. I have found a few libs as www.aftek.com/afteklab/aftek-RTMP-library.shtml

[android-developers] MediaPlayer: setDataSource failed (streaming)

2011-08-16 Thread Dmitry Kazakov
Hi there. I write Android app and I want to playing music from a remote URL via HTTP streaming. In official tutorial is showed this code: String url = http://;; // your URL here MediaPlayer mediaPlayer = new MediaPlayer(); mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);

[android-developers] How to use ListView in Tab?

2011-02-22 Thread Dmitry Kazakov
Good day. In my app I have three tab (one Activity extend TabActivity and others activitys provides access to content). In first tab I have ImageView, a few TextView and it is works. But when I add ListView and in activity that contain ListView I add a few rows it was not show in may tab. Can