Recent content by Jo_Han_Solo

  1. J

    Issues with TCP Client/Server

    Actually this problem was solved by adding the following lines to the MainActivity: StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build(); StrictMode.setThreadPolicy(policy); So if anyone else encounters a similar issue. This might help you.
  2. J

    Media Player Android Studio

    So are you asking about how to add a pause/start button for a media player? If so try these: https://stackoverflow.com/questions/9461056/android-media-player-play-pause-button https://stackoverflow.com/questions/18120174/how-to-play-and-pause-in-only-one-button-android
  3. J

    Issues with TCP Client/Server

    Hey guys, I wrote this basic TCP Client in Android with a C++ Server running in Linux. Now the thing is this worked through Ethernet with a Rooted Samsung Note 2, however, with a brand spanking new Samsung Galaxy Note 8, it no longer works. Everything works great on the Rooted Note 2. But when...