forked from Blankj/AndroidUtilCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathToastActivity.java
More file actions
77 lines (68 loc) · 2.6 KB
/
ToastActivity.java
File metadata and controls
77 lines (68 loc) · 2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.blankj.androidutilcode.activity;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import com.blankj.androidutilcode.R;
import com.blankj.utilcode.util.ToastUtils;
/**
* <pre>
* author: Blankj
* blog : http://blankj.com
* time : 2016/9/29
* desc : Toast工具类Demo
* </pre>
*/
public class ToastActivity extends Activity
implements View.OnClickListener {
private boolean isJumpWhenMore;
private TextView tvAboutToast;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_toast);
isJumpWhenMore = false;
tvAboutToast = (TextView) findViewById(R.id.tv_about_toast);
findViewById(R.id.btn_is_jump_when_more).setOnClickListener(this);
findViewById(R.id.btn_show_short_toast_safe).setOnClickListener(this);
findViewById(R.id.btn_show_long_toast_safe).setOnClickListener(this);
findViewById(R.id.btn_show_short_toast).setOnClickListener(this);
findViewById(R.id.btn_show_long_toast).setOnClickListener(this);
findViewById(R.id.btn_cancel_toast).setOnClickListener(this);
tvAboutToast.setText(String.format("Is Jump When More: %b", isJumpWhenMore));
}
@Override
public void onClick(View view) {
switch (view.getId()) {
case R.id.btn_is_jump_when_more:
ToastUtils.init(isJumpWhenMore = !isJumpWhenMore);
break;
case R.id.btn_show_short_toast_safe:
new Thread(new Runnable() {
@Override
public void run() {
ToastUtils.showShortToastSafe("show_short_toast_safe");
}
}).start();
break;
case R.id.btn_show_long_toast_safe:
new Thread(new Runnable() {
@Override
public void run() {
ToastUtils.showLongToastSafe("show_long_toast_safe");
}
}).start();
break;
case R.id.btn_show_short_toast:
ToastUtils.showShortToast("show_short_toast");
break;
case R.id.btn_show_long_toast:
ToastUtils.showShortToast("show_long_toast");
break;
case R.id.btn_cancel_toast:
ToastUtils.cancelToast();
break;
}
tvAboutToast.setText(String.format("Is Jump When More: %b", isJumpWhenMore));
}
}