Toast.makeText是Android中用于顯示短暫提示信息的類。它有幾種常見的用法:
Toast.makeText(context, "提示信息", Toast.LENGTH_SHORT).show();
Toast toast = Toast.makeText(context, "提示信息", Toast.LENGTH_SHORT);
toast.setDuration(5000); // 設(shè)置為自定義時(shí)長,單位為毫秒
toast.show();
Toast toast = Toast.makeText(context, "提示信息", Toast.LENGTH_SHORT);
toast.setGravity(Gravity.TOP | Gravity.CENTER_HORIZONTAL, 0, 0); // 設(shè)置為頂部居中顯示
toast.show();
LayoutInflater inflater = getLayoutInflater();
View toastView = inflater.inflate(R.layout.custom_toast_layout, (ViewGroup) findViewById(R.id.custom_toast_container));
Toast toast = new Toast(context);
toast.setView(toastView);
toast.setDuration(Toast.LENGTH_SHORT);
toast.show();
這些是Toast.makeText的幾種常見用法,可以根據(jù)具體需求選擇適合的方式來顯示Toast提示信息。