I understand that it is created using recyclerview or ListView, but how? Please help me with the code!

  • so code in the studio. how are you trying. you just need to connect to the database remotely to make requests and display data. - Naumov
  • Break the task apart. Understand how to get data from an application from a remote database, figure out how to display a set of data / lines in recyclerview. After - connect and get the result. - Yuriy SPb
  • phpmyadmin is just a webmord for MySQL standing on the server and as far as I remember it has no external API. Therefore, the question arises what exactly you need (display phpmyadmin or database from MySQL). Display phpmyadmin in android application can only be using WebView. But with the database it is a little different - You can connect directly to MySQL, but there are some minuses. because Firstly, on the server, the ports are most often closed for direct connection to MySQL from the outside and they are accessible only to the local user. Secondly - you will spend connections to MySQL - Mikhail Rebrov
  • MySQL connections have the ability to quickly end if they are not properly closed - Mikhail Rebrov
  • One of the most frequent ways is to design and develop a service (a REST service for example) to upload data from MySQL and work in an android application already with a service. Then you can reach the database on the server that has ports closed for access from outside. A web service can store a pool of MySQL connections and save them. But at the same time, you will not be able to work with an arbitrary base without this service itself ... - Mikhail Rebrov

0