入博第一篇—Toast顯示時間以及樣式的自定義

你們好,這是我入博後的第一篇我的技術博客,在寫以前也是參考了一些資料,可是內容絕對真實,出自本人之手,但願在這個平臺跟你們一塊兒交流學習,共同成長。java

好了,話很少說,開始進入主題,今天我要說的Toast,首先,Toast是一個視圖,能夠看得見,可是摸不着,爲何說摸不着呢,由於Toast是沒有焦點的,也就是說Toast只是一個簡單的展現提示信息的彈窗,它並不能像Dialog能夠對其進行點擊處理,那麼若是是系統默認的Toast的話,通常狀況下會以文本的方式顯示在屏幕的下方,並且只會保持幾秒的時間的就會自動消失,可是這樣簡單的樣式有時候並不能知足現實開發當中複雜的需求。接下來,我要說的是對於Toast的顯示內容跟彈出來的位置以及顯示時間的自定義。再犀利點語言也抵不過圖片來的簡單粗暴直觀,那下面直接上截圖:android

1.主頁面三個功能點的點擊按鈕:app

這個就不用多說;ide

 

2.系統默認Toast的顯示的位置:學習

 

3.自定義Toast樣式的顯示:this

Toast顯示的內容有文本,有圖片,並且顯示位置能夠根據需求本身制定;spa

 

4.自定義Toast顯示的時間:code

 

下面的實現上面效果的代碼:xml

MainActivity:blog

 1 import java.util.Timer;
 2 import java.util.TimerTask;
 3 import android.app.Activity;
 4 import android.os.Bundle;
 5 import android.view.Gravity;
 6 import android.view.LayoutInflater;
 7 import android.view.View;
 8 import android.view.View.OnClickListener;
 9 import android.view.ViewGroup;
10 import android.widget.ImageView;
11 import android.widget.TextView;
12 import android.widget.Toast;
13 
14 public class MainActivity extends Activity {
15 
16     private TextView tv1;
17     private TextView tv2;
18     private TextView tv3;
19 
20     @Override
21     protected void onCreate(Bundle savedInstanceState) {
22         super.onCreate(savedInstanceState);
23         setContentView(R.layout.activity_main);
24         tv1 = (TextView) findViewById(R.id.tv_1);
25         tv2 = (TextView) findViewById(R.id.tv_2);
26         tv3 = (TextView) findViewById(R.id.tv_3);
27         tv1.setOnClickListener(new OnClickListener() {
28 
29             @Override
30             public void onClick(View v) {
31                 DefaultToast();
32 
33             }
34 
35         });
36         tv2.setOnClickListener(new OnClickListener() {
37 
38             @Override
39             public void onClick(View v) {
40                 CustomStylesToast();
41 
42             }
43 
44         });
45         tv3.setOnClickListener(new OnClickListener() {
46 
47             @Override
48             public void onClick(View v) {
49                 CustomTimeToast();
50 
51             }
52 
53         });
54     }
55 
56     private void DefaultToast() {
57         Toast.makeText(this, "Hello", Toast.LENGTH_SHORT).show();
58 
59     }
60 
61     private void CustomStylesToast() {
62         LayoutInflater inflater = getLayoutInflater();
63         View layout = inflater.inflate(R.layout.toast_custom_styles,
64                 (ViewGroup) findViewById(R.id.ll_Toast));
65         ImageView image = (ImageView) layout.findViewById(R.id.iv_ImageToast);
66         image.setImageResource(R.drawable.ic_launcher);
67         TextView text = (TextView) layout.findViewById(R.id.tv_TextToast);
68         text.setText("自定義Toast的樣式");
69         Toast toast = new Toast(this);
70         toast.setGravity(Gravity.LEFT | Gravity.TOP, 20, 50);
71         toast.setDuration(Toast.LENGTH_LONG);
72         toast.setView(layout);
73         toast.show();
74 
75     }
76 
77     private void CustomTimeToast() {
78         final Toast toast = Toast.makeText(this, "自定義Toast的時間",
79                 Toast.LENGTH_LONG);
80         final Timer timer = new Timer();
81         timer.schedule(new TimerTask() {
82             @Override
83             public void run() {
84                 toast.show();
85             }
86         }, 0, 3000);// 3000表示點擊按鈕以後,Toast延遲3000ms後顯示
87         new Timer().schedule(new TimerTask() {
88             @Override
89             public void run() {
90                 toast.cancel();
91                 timer.cancel();
92             }
93         }, 5000);// 5000表示Toast顯示時間爲5秒
94 
95     }
96 }

activity_main.xml 與 toast_custom_styles.xml :

 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2     xmlns:tools="http://schemas.android.com/tools"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:orientation="vertical"
 6     tools:context="${relativePackage}.${activityClass}" >
 7 
 8     <TextView
 9         android:id="@+id/tv_1"
10         android:layout_width="match_parent"
11         android:layout_height="wrap_content"
12         android:layout_marginTop="40dp"
13         android:background="#000000"
14         android:gravity="center_horizontal"
15         android:padding="10dp"
16         android:text="系統默認的顯示"
17         android:textColor="#ffffff"
18         android:textSize="16sp" />
19 
20 
21     <TextView
22         android:id="@+id/tv_2"
23         android:layout_width="match_parent"
24         android:layout_height="wrap_content"
25         android:layout_marginTop="40dp"
26         android:background="#000000"
27         android:gravity="center_horizontal"
28         android:padding="10dp"
29         android:text="自定義Toast的樣式"
30         android:textColor="#ffffff"
31         android:textSize="16sp" />
32 
33     <TextView
34         android:id="@+id/tv_3"
35         android:layout_width="match_parent"
36         android:layout_height="wrap_content"
37         android:layout_marginTop="40dp"
38         android:background="#000000"
39         android:gravity="center_horizontal"
40         android:padding="10dp"
41         android:text="自定義Toast的顯示時間"
42         android:textColor="#ffffff"
43         android:textSize="16sp" />
44 
45 </LinearLayout>
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:id="@+id/ll_Toast"
 4     android:layout_width="wrap_content"
 5     android:layout_height="wrap_content"
 6     android:background="#ffffffff"
 7     android:orientation="vertical" >
 8 
 9     <LinearLayout
10         android:id="@+id/ll_ToastContent"
11         android:layout_width="wrap_content"
12         android:layout_height="wrap_content"
13         android:layout_marginBottom="1dp"
14         android:layout_marginLeft="1dp"
15         android:layout_marginRight="1dp"
16         android:background="#44000000"
17         android:orientation="vertical"
18         android:padding="15dip" >
19 
20         <ImageView
21             android:id="@+id/iv_ImageToast"
22             android:layout_width="wrap_content"
23             android:layout_height="wrap_content"
24             android:layout_gravity="center" />
25 
26         <TextView
27             android:id="@+id/tv_TextToast"
28             android:layout_width="wrap_content"
29             android:layout_height="wrap_content"
30             android:gravity="center"
31             android:paddingLeft="10dp"
32             android:paddingRight="10dp"
33             android:textColor="#ff000000" />
34     </LinearLayout>
35 
36 </LinearLayout>

 

以上代碼都很簡單,應該不須要什麼註釋。

相關文章
相關標籤/搜索