使用片段构建基本的Android应用程序

时间:2015-01-29 22:58:23

标签: android multithreading android-activity dialog fragment

我想编写一个启动主要活动的Android应用程序,它只显示一个动画,然后在他旁边打印1秒后打开文本问号并且只停留2秒钟。之后出现新文本并保持4秒钟。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

您想使用烤面包或显示消息的内容吗?

如果答案是Toast,你可以尝试这种方法!

" msg"参数是你的消息和"节奏"参数是您希望显示消息的时间长度(在MS中)。朋友,我希望它有所帮助! :)

public static void Msg(Activity activity, String msg, int tempo)
{
    final Toast toast = Toast.makeText(activity, msg, Toast.LENGTH_SHORT);
    toast.show();

    //for how long the message will be shown
    Handler handler = new Handler();
    handler.postDelayed(new Runnable() {
        @Override
        public void run() {
            toast.cancel();
        }
    }, tempo);
}