91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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

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

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

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

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

    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. 在后臺線程中使用Toast消息:

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

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

0
娄烦县| 长顺县| 揭西县| 浑源县| 兴城市| 运城市| 永胜县| 安阳市| 乡宁县| 黑水县| 宿迁市| 湟源县| 余姚市| 乐山市| 高尔夫| 龙川县| 宁强县| 新宾| 鄂托克旗| 宿州市| 额济纳旗| 巩义市| 小金县| 米泉市| 墨玉县| 莫力| 和田县| 哈密市| 叙永县| 江西省| 大丰市| 偃师市| 娄烦县| 萝北县| 东乡| 日照市| 普兰店市| 靖远县| 泽州县| 建始县| 克拉玛依市|