现在的位置: 首页 > 综合 > 正文

自定义显示的Toast

2013年08月29日 ⁄ 综合 ⁄ 共 395字 ⁄ 字号 评论关闭

    protected void showToast() {
        // create the view
        View view = inflateView(R.layout.incoming_message_panel);

        // set the text in the view
        TextView tv = (TextView)view.findViewById(R.id.message);
        tv.setText("khtx. meet u for dinner. cul8r");

        // show the toast
        Toast toast = new Toast(this);
        toast.setView(view);
        toast.setDuration(Toast.LENGTH_LONG);
        toast.show();
    }

抱歉!评论已关闭.