I set the gravity of my toast to make it show on the top of the screen, with code below:
Toast toast = Toast.makeText(getActivity(), "邮箱地址不能为空!", Toast.LENGTH_SHORT);
toast.setGravity(Gravity.TOP, 0, 0);
toast.show();
it does not work in my AVD Nexus 6 API 30 with LogCat message:
E/Toast: setGravity() shouldn't be called on text toasts, the values won't be used
however it seems fine when I install the apk on my phone Nokia X6 with Android 9. please help me!!