https://kotlinlang.org logo
Title
u

user

07/15/2022, 7:51 AM
Volley RequestQueue is not working (Kotlin) I have a LoginActivity that has a very simple layout with 2 EditText's (username and password) and 1 Button (login button). I want to perform a POST request to a server when the login button is pressed. I am using Volley. Here's the code class LoginActivity : AppCompatActivity() { private lateinit var loginButton: Button private lateinit var loginNameEditText: EditText private lateinit var passwordEditText: EditText private lateinit var queue: RequestQueue override fun...