Я учусь AsyncTask
. Я хочу добавить TextView, например Loading .... , пока AyncTask работает. Как это сделать
Ниже приведен код
public class MainActivity extends AppCompatActivity {
private EditText et_bookInput;
private TextView tv_titleText;
private TextView tv_authorText;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
et_bookInput = findViewById(R.id.bookInput);
tv_titleText = findViewById(R.id.titleText);
tv_authorText = findViewById(R.id.authorText);
}
public void searchBooks(View view) {
// Get the name of the book from the input field
String queryString = et_bookInput.getText().toString();
InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
if(inputMethodManager != null){
inputMethodManager.hideSoftInputFromWindow(view.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
}
new FetchBook(tv_titleText, tv_authorText).execute(queryString);
}