android Toast五種特效
Toast是一種提供給使用者簡潔資訊的檢視。Toast類幫助你建立和顯示該資訊。
該檢視已浮於應用程式之上的形式呈現給使用者。因為它並不獲得焦點,即使使用者正在輸入什麼也不會受到影響。它的目標是儘可能已不顯眼的方式,使使用者看到你提供的資訊。有兩個例子就是音量控制和設定資訊儲存成功。
使用該類最簡單的方法就是呼叫一個靜態方法,讓他來構造你需要的一切並返回一個新的 Toast 物件。
1、我們首先來看看Toast常用 的預設效果:
2、我們還可以自定義位置:
3、帶圖片的:
4、完全實現我們自己的自定義效果:
5、可以由其它執行緒更新:
檢視原始碼:
HelloToastActivity.java
- package hb.android.hellotoast;
- import android.app.Activity;
- import android.os.Bundle;
- import android.os.Handler;
- import android.view.Gravity;
- import android.view.LayoutInflater;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
- import android.widget.ImageView;
- import android.widget.LinearLayout;
- import android.widget.TextView;
- import android.widget.Toast;
- public class HelloToastActivity extends Activity {
- /** Called when the activity is first created. */
- Button btn_default;
- Button btn_define;
- Button btn_all_define;
- Button btn_image_define;
- Button btn_other_thread;
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- initButton();
- btn_all_define.setOnClickListener(new MyOnClickListerer());
- btn_define.setOnClickListener(new MyOnClickListerer());
- btn_other_thread.setOnClickListener(new MyOnClickListerer());
- btn_image_define.setOnClickListener(new MyOnClickListerer());
- btn_default.setOnClickListener(new MyOnClickListerer());
- }
- public void initButton() {
- btn_all_define = (Button) findViewById(R.id.btn_all_define);
- btn_default = (Button) findViewById(R.id.btn_default);
- btn_define = (Button) findViewById(R.id.btn_define);
- btn_image_define = (Button) findViewById(R.id.btn_image_define);
- btn_other_thread = (Button) findViewById(R.id.btn_other_thread);
- }
- private class MyOnClickListerer implements OnClickListener {
- Handler handler = new Handler();
- @Override
- public void onClick(View v) {
- if (v == btn_default) {
- Toast.makeText(getApplicationContext(), "這 是預設效果",
- Toast.LENGTH_SHORT).show();
- } else if (v == btn_define) {
- Toast toast = Toast.makeText(getApplicationContext(),
- "這是自定義位置", Toast.LENGTH_SHORT);
- toast.setGravity(Gravity.CENTER, 0, 0);
- toast.show();
- } else if (v == btn_image_define) {
- Toast toast = Toast.makeText(getApplicationContext(), "這是帶圖片的",
- Toast.LENGTH_SHORT);
- LinearLayout toastView = (LinearLayout) toast.getView();
- ImageView imageCodeProject = new ImageView(
- getApplicationContext());
- imageCodeProject.setImageResource(R.drawable.ic_launcher);
- toastView.addView(imageCodeProject, 0);
- toast.show();
- } else if (v == btn_all_define) {
- LayoutInflater inflater = getLayoutInflater();
- View view = inflater.inflate(R.layout.custom, null);
- ImageView iv = (ImageView) view.findViewById(R.id.tvImageToast);
- iv.setImageResource(R.drawable.ic_launcher);
- TextView title = (TextView) view
- .findViewById(R.id.tvTitleToast);
- title.setText("Attention");
- TextView text = (TextView) view.findViewById(R.id.tvTextToast);
- text.setText("完全自定義Toast");
- Toast toast = new Toast(getApplicationContext());
- toast.setGravity(Gravity.RIGHT | Gravity.TOP, 12, 40);
- toast.setDuration(Toast.LENGTH_LONG);
- toast.setView(view);
- toast.show();
- } else if (v == btn_other_thread) {
- new Thread(new Runnable() {
- public void run() {
- System.out.println("d");
- showToast();
- }
- }).start();
- }
- }
- public void showToast() {
- handler.post(new Runnable() {
- @Override
- public void run() {
- Toast.makeText(getApplicationContext(), "我來自其他執行緒!",
- Toast.LENGTH_SHORT).show();
- }
- });
- }
- }
- }
custom.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/llToast"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="#ffffffff"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/tvTitleToast"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_margin="1dip"
- android:background="#bb000000"
- android:gravity="center"
- android:textColor="#ffffffff" />
- <LinearLayout
- android:id="@+id/llToastContent"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="1dip"
- android:layout_marginLeft="1dip"
- android:layout_marginRight="1dip"
- android:background="#44000000"
- android:orientation="vertical"
- android:padding="15dip" >
- <ImageView
- android:id="@+id/tvImageToast"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center" />
- <TextView
- android:id="@+id/tvTextToast"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:paddingLeft="10dip"
- android:paddingRight="10dip"
- android:textColor="#ff000000" />
- </LinearLayout>
- </LinearLayout>
main.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical"
- android:gravity="center_horizontal">
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="建立屬於你自己的Toast" />
- <Button
- android:id="@+id/btn_default"
- android:text="預設"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal"/>
- <Button
- android:id="@+id/btn_define"
- android:text="自定義位置"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal"/>
- <Button
- android:id="@+id/btn_image_define"
- android:text="帶圖片"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal"/>
- <Button
- android:id="@+id/btn_all_define"
- android:text="完全自定義效果"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal"/>
- <Button
- android:id="@+id/btn_other_thread"
- android:text="來自其它純種"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal"/>
- </LinearLayout>
原始碼下載:Android Toast用法詳解(各種自定義Toast)
ref:http://blog.csdn.net/huangbiao86/article/details/6965669
相關文章
- Android學習之路五:Dialog和ToastAndroidAST
- Android Toast小解AndroidAST
- Android自定義ToastAndroidAST
- Android 自定義Toast及BUGAndroidAST
- Android 自定義Toast,修改Toast樣式和顯示時長AndroidAST
- [Android] Toast問題深度剖析(二)AndroidAST
- [Android] Toast問題深度剖析(一)AndroidAST
- Android 5中不同效果的ToastAndroidAST
- Android App中使用全域性ToastAndroidAPPAST
- Android Toast 預設和自定義使用AndroidAST
- Android UI控制元件系列:Toast(提示)AndroidUI控制元件AST
- Android中自定義Toast文字大小AndroidAST
- Android 自定義Toast實現多次觸發只會顯示一次toastAndroidAST
- Android7.1.1Toast崩潰解決方案AndroidAST
- Android-重新包裝Toast,自定義背景AndroidAST
- Android中自定義特定顏色的ToastAndroidAST
- Android 程式設計程式碼-自定義 ToastAndroid程式設計AST
- ToastAST
- Android實現粒子爆炸特效Android特效
- Android製作粒子爆炸特效Android特效
- Android 倒數計時的五種實現方式Android
- Android高手進階教程(二十二)之---Android中幾種影象特效處理的集錦!!Android特效
- Android Toast 自定義背景、圖片 隨心使用AndroidAST
- [Android] 定製化Toast展示(位置、底色、圓角)AndroidAST
- 【Android開發點滴】自定義Toast樣式AndroidAST
- Android自定義邊框背景顏色的ToastAndroidAST
- Android 防止多次點選,Toast重複顯示AndroidAST
- 非常逼真的玻璃破碎特效android特效Android
- expdp五種mode
- 自定義Toast樣式+改變Toast寬高AST
- Android懸浮窗TYPE_TOAST小結: 原始碼分析AndroidAST原始碼
- 自定義ToastAST
- van-toastAST
- android簡單的圖形特效處理Android特效
- Android 中 View 炸裂特效的實現分析AndroidView特效
- 中級實訓Android學習記錄——Toast、AlertDialog、ProgressBarAndroidAST
- (四)五種IO模型模型
- 五種編碼模式模式