В приведенном ниже коде я успешно отобразил данные, но с помощью recyclerView. Хочу спросить, как отображать данные при использовании Textview? [code]private void loadDataMahasiswa() { progress = new ProgressDialog(this); progress.setCancelable(false); progress.setMessage("Loading ..."); progress.show();
String nip = editTxtnip.getText().toString(); Retrofit retrofit = new Retrofit.Builder() .baseUrl(URL) .addConverterFactory(GsonConverterFactory.create()) .build(); LoginAPI api = retrofit.create(LoginAPI.class); Call call = api.view3(nip); call.enqueue(new Callback() { @Override public void onResponse(Call call, Response response) { String value = response.body().getValue(); progress.dismiss(); if (value.equals("1")) {