WS-Discovery on Android
Java-ws-discovery may not work on Android due to its dependencies not supported by Android.
One may have to implement the protocol.
You should also read:
java.lang.NoClassDefFoundError in Eclipse for Android projects
This error can occur when a class is instantiated and the class is from an included Maven project or a jar file. This is probably caused by a flaw of ADK. The remedy is: Right-click the project > Build Path > Configure Build Path... >…
Continue reading...RTSP over HTTP streaming of H.264 video in Android
Android Jeally Bean and later (API Level 16 and above) support MediaCodec thatn can handle H.264 encoded video. There are some samples using this feature. To use MediaCodec display H.264 encode video streamed using RTSP over HTTP: This blog has a good explanation of codec specific data. MediaCodec is…
Continue reading...Principle of ListView and RecyclerView of Android
There are four components in using ListView or its better version RecyclerView: The adapter links a list to the instances of ViewHolder (via onBindViewHolder) each of which corresponds to an item and inflates the layout that displays the item. Each view model corresponds to an item,…
Continue reading...