这个网站是最好的,它对我帮助很大...我是创建 android applecation 的初学者。这是我第一次在这里问问题..我的问题是如何仅显示 5 秒钟的文本视图并使其消失.. 当我搜索时我找到了一些代码但我不知道如何使用它或者我使用它以错误的方式..所以任何人都可以给我一个非常简单的例子如何做到这一点?我真的很感谢你的帮助......>>(我不希望文本消失,我希望洞 textview 消失)
问问题
15762 次
6 回答
12
使用异步任务:
new AsyncTask<Void, Void, Void>()
{
protected Void doInBackground(Void... params)
{
Thread.sleep(5000); // sleep 5 seconds
}
protected void onPostExecute (Void result)
{
// fade out view nicely
AlphaAnimation alphaAnim = new AlphaAnimation(1.0f,0.0f);
alphaAnim.setDuration(400);
alphaAnim.setAnimationListener(new AnimationListener()
{
public void onAnimationEnd(Animation animation)
{
// make invisible when animation completes, you could also remove the view from the layout
myTextView.setVisibility(View.INVISIBLE);
}
});
myTextView.startAnimation(alphaAnim);
}
}.execute();
或者,更好的是,只使用动画:
已编辑(感谢@pkk 的建议):
// fade out view nicely after 5 seconds
AlphaAnimation alphaAnim = new AlphaAnimation(1.0f,0.0f);
alphaAnim.setStartOffset(5000); // start in 5 seconds
alphaAnim.setDuration(400);
alphaAnim.setAnimationListener(new AnimationListener()
{
public void onAnimationEnd(Animation animation)
{
// make invisible when animation completes, you could also remove the view from the layout
myTextView.setVisibility(View.INVISIBLE);
}
});
myTextView.setAnimation(alphaAnim);
于 2013-06-21T19:43:32.060 回答
6
如果您希望计时器显示,一种方法是使用CountDownTimer
public void onCreate(...){
...
timer = new MyCountDown(5000, 1000);
}
private class MyCountDown extends CountDownTimer
{
long duration, interval;
public MyCountDown(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
// TODO Auto-generated constructor stub
start();
}
@Override
public void onFinish() {
textView1.setVisibility(View.INVISIBLE);
}
@Override
public void onTick(long duration) {
// could set text for a timer here
}
}
您也可以使用TimerTask。
这是一个很好的例子TimerTask
还有各种其他方式。您可以搜索 Docs 或 SO 来决定哪个最适合您的需求
用TimerTask
示例编辑
Timer t = new Timer(false);
t.schedule(new TimerTask() {
@Override
public void run() {
runOnUiThread(new Runnable() {
public void run() {
txt.setVisibility(View.INVISIBLE);
}
});
}
}, 5000);
于 2013-06-21T19:43:51.363 回答
3
final TextView textView = new TextView(this);
// add textView on some Layout
textView.setText("Text or smth. from resource");
CountDownTimer timer = new CountDownTimer(5000, 1000) {
@Override
public void onTick(long millisUntilFinished) {
}
@Override
public void onFinish() {
textView .setVisibility(View.INVISIBLE); //(or GONE)
}
}.start();
于 2013-06-21T19:47:00.897 回答
3
您可以使用带有 runnable 的 Handler 来执行此操作。就像我正在根据我的需要做的那样。
我有一个 Activity1,我要去 Activity2 更新配置文件后更新配置文件我必须在 Activity1 中显示“更新成功”文本,所以我在 AppConstants 中创建一个标志“PERSONAL_DETAIL_UPDATE”并在配置文件时将其设置为“true”在 Activity2 中更新成功并从那里调用 Activity1 以向用户显示更新的配置文件。
现在在使用此代码的 Activity2 中,我将显示“更新成功”文本 3 秒,然后在 3 秒后使其消失。我正在默认情况下在 xml 中使 TextView 的可见性消失,您可以根据需要修改此代码。
enter code here
if (AppConstants.PERSONAL_DETAIL_UPDATE) {
personalDetailUpdateSuccessTV.setVisibility(View.VISIBLE);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
personalDetailUpdateSuccessTV.setVisibility(View.GONE);
}
}, 3000);
}
于 2018-07-20T13:17:56.270 回答
1
public class MainActivity extends Activity {
private Handler h;
TextView txt;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
txt=(TextView)findViewById(R.id.txt);
Runnable r=new Runnable(){
@Override
public void run() {
// TODO Auto-generated method stub
Log.e("bf", "fd");
h.postDelayed(this, 500);
if (txt.isShown()){
txt.setVisibility(View.INVISIBLE);
}
else{
txt.setVisibility(View.VISIBLE);
}
}
};
h=new Handler();
h.post(r);
}
}
于 2013-06-21T20:25:07.420 回答
1
您可以为此使用CounDownTimer
if (password.text.toString() == preferences.getPassword()) {
textView.text = ""
endLockScreen.finishLockScreen()
} else {
textView.text = "Wrong Password"
val timer = object : CountDownTimer(1000, 1000) {
override fun onTick(millisUntilFinished: Long) {}
override fun onFinish() {
textView.text = ""
}
}.start()
}
于 2021-03-20T12:11:47.293 回答