消息模式Toast.makeText的幾種常見用法

小云
134
2024-02-02 17:43:30
欄目: 編程語言

Toast.makeText是Android中用于顯示短暫的消息提示的工具類,常見的用法有以下幾種:

  1. 顯示簡單的文本消息:

    Toast.makeText(context, "Hello World!", Toast.LENGTH_SHORT).show();
    
  2. 設(shè)置消息的顯示時(shí)長:

    Toast.makeText(context, "Hello World!", Toast.LENGTH_LONG).show();
    
  3. 自定義消息的位置:

    Toast toast = Toast.makeText(context, "Hello World!", Toast.LENGTH_SHORT);
    toast.setGravity(Gravity.TOP|Gravity.CENTER_HORIZONTAL, 0, 0);
    toast.show();
    
  4. 使用自定義的布局顯示消息:

    LayoutInflater inflater = getLayoutInflater();
    View layout = inflater.inflate(R.layout.custom_toast, findViewById(R.id.custom_toast_container));
    TextView text = layout.findViewById(R.id.text);
    text.setText("Hello World!");
    
    Toast toast = new Toast(getApplicationContext());
    toast.setDuration(Toast.LENGTH_SHORT);
    toast.setView(layout);
    toast.show();
    
  5. 在后臺(tái)線程中使用Toast消息:

    runOnUiThread(new Runnable() {
        @Override
        public void run() {
            Toast.makeText(context, "Hello World!", Toast.LENGTH_SHORT).show();
        }
    });
    

這些是Toast.makeText的幾個(gè)常見用法,開發(fā)者可以根據(jù)自己的需求選擇適合的用法來顯示消息提示。

0