亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

消息模式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
成都市| 定日县| 鄄城县| 盐池县| 连山| 江永县| 和龙市| 龙泉市| 尼勒克县| 南澳县| 巢湖市| 灵武市| 颍上县| 林周县| 林西县| 大足县| 托里县| 呼玛县| 滨州市| 独山县| 武强县| 房山区| 行唐县| 清原| 乳源| 什邡市| 永丰县| 日照市| 全椒县| 金山区| 镇康县| 曲松县| 萍乡市| 佛学| 垫江县| 新民市| 高雄县| 黄石市| 根河市| 资中县| 城步|