如何使一个字符串暂时出现10秒然后消失

时间:2014-07-31 00:35:51

标签: java android string

我使用eclipse并制作一个Android应用程序,需要让一个字符串出现10秒然后消失。

1 个答案:

答案 0 :(得分:1)

试试这个:

final TextView textView = (TextView) findViewById(R.id.some_textview_id);
textView.setText("some text");
textView.setVisibility(View.VISIBLE);
textView.postDelayed(new Runnable() {
    @Override
    public void run() {
        textView.setVisibility(View.GONE);
    }
}, 10 * 1000); // start this function after a delay of 10 seconds