android自定義Toast之-彈出消息

来源:http://www.cnblogs.com/androidshouce/archive/2016/06/17/5592875.html
-Advertisement-
Play Games

android自定義Toast之-彈出消息 實現方法: 1.new 一個Toast實例toast。 2.自定義一個顯示的View實例view 。 3.把toast.setView(view),toast.setDuration(Toast.LENGTH_LONG)設置顯消息示時間 4.避免操作有誤一 ...


android自定義Toast之-彈出消息

實現方法:

1.new 一個Toast實例toast。

2.自定義一個顯示的View實例view 。

3.把toast.setView(view),toast.setDuration(Toast.LENGTH_LONG)設置顯消息示時間

4.避免操作有誤一直重覆彈出消息處理,定義一個Toast的全局變數避免重覆實例化進行控制

 下麵是代碼

複製代碼
package com.android.hexiang.otptoken;

import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.content.Context;
import android.widget.TextView;
import android.widget.Toast;
import com.android.hexiang.otptoken.R;

/**
 * Created by hexiang on 2014/12/10.
 */
public class MyToast {

    private static Toast mToast = null;
    /**
     * 自定義消息框
     * @param c
     * Created by hexiang on 2014/12/10.
     */
    @SuppressWarnings("deprecation")
    private static Toast showCustomerToast(final Context c,String msg,int duration)
    {

        //獲取LayoutInflater對象,該對象可以將佈局文件轉換成與之一致的view對象
        LayoutInflater inflater=LayoutInflater.from(c);
        //將佈局文件轉換成相應的View對象
        View layout=inflater.inflate(R.layout.my_customer_toast_layout,null);
        layout.setBackgroundDrawable(c.getResources().getDrawable(R.drawable.back_toast_style));
        //從layout中按照id查找TextView對象
        TextView textView=(TextView)layout.findViewById(R.id.txt_msg);
        //設置TextView的text內容
        textView.setText(msg);
        //實例化一個Toast對象
        Toast toast=new Toast(c.getApplicationContext());
        toast.setDuration(duration);
        toast.setGravity(Gravity.BOTTOM|Gravity.CENTER_HORIZONTAL, 0, 160);
        toast.setView(layout);
        return toast;

    }

    /**
     * 長消息框 指的的是時間長短
     * Created by hexiang on 2014/12/10.
     * @param c 上下文
     * @param msg 消息內容
     */
    @SuppressWarnings("deprecation")
    public static void showCustomerToastLong(final Context c,String msg)
    {   //避免重覆彈出消息
        if (mToast == null) {
            mToast =showCustomerToast(c,msg,Toast.LENGTH_LONG);
        }
        else {
            TextView txt_msg=(TextView) mToast.getView().findViewById(R.id.txt_msg);
            txt_msg.setText(msg);
            mToast.setDuration(Toast.LENGTH_LONG);
        }

        mToast.show();

    }
    /**
     * 短消息框 指的的是時間長短 mToast.setDuration(Toast.LENGTH_SHORT);
     * @param c 上下文
     * @param msg 消息內容
     * Created by hexiang on 2014/12/10.
     */
    @SuppressWarnings("deprecation")
    public static void showCustomerToastShot(final Context c,String msg)
    {   //避免重覆彈出消息
        if (mToast == null) {
            mToast =showCustomerToast(c,msg,Toast.LENGTH_SHORT);
        }
        else {
            TextView txt_msg=(TextView) mToast.getView().findViewById(R.id.txt_msg);
            txt_msg.setText(msg);
            mToast.setDuration(Toast.LENGTH_SHORT);
        }

        mToast.show();
    }
}
複製代碼

 

下麵是XMl文件

複製代碼
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:id="@+id/toast_layout_root"
 6     android:orientation="vertical" >
 7 
 8   <TextView
 9      android:layout_margin="6dp" 
10     android:layout_gravity="center_vertical|center_horizontal"
11     android:id="@+id/txt_msg"
12     android:layout_width="match_parent"
13     android:textColor="@color/white_light"
14     android:textSize="14sp"
15     android:text="this is a test toast"
16     android:layout_height="wrap_content"
17   />
18 </LinearLayout>
複製代碼

下麵是自定義漸變背景

複製代碼
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

      <gradient
        android:angle="315"
        android:centerX="0.5"
        android:centerY="0.5"
        android:centerColor="#fcdede"
        android:endColor="#e5edbe"
        android:startColor="#d2b2b2" />
    <corners android:radius="3dp" />
</shape>
複製代碼

溫習下android:shape的使用
gradient:漸變
android:startColor和android:endColor分別為起始和結束顏色,android:centerColor中間部分顏色
ndroid:angle是漸變角度,必須為45的整數倍。

 

 

最後是調用

 1 MyToast.showCustomerToastLong(this,"測試消息框"); 

 

大功告成了,本文謝絕轉載,自重 。程式猿不容易...

Created by hexiang on 2014/12/10. 清分依然

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 網上說的都是在super(context, attrs);構造函數這裡少加了一個欄位, 其實根本不只這一個原因,屬於view生命周期的應該知道,如果你在 自定義view的構造函數裡面調用findViewById 鐵定為空的,因為這個 時候view還在初始化階段,還沒有添加到activity的XML布 ...
  • Volley下載主要應用於下載文本數據和圖片數據兩個方向,下麵分別介紹; 一、使用Volley開啟下載,首先要做的是導包和添加許可權; (1)在build.gradle文件中導入依賴包:compile 'eu.the4thfloor.volley:com.android.volley:2015.05. ...
  • 牛牛 1.對稱加密和非對稱加密的區別? 2.tcp和udp的區別? 3.app怎麼實現部分功能更新?(熱更新) 4.推送 5.socket 6.設計模式有哪些 其他的忘記 想起來 再添加上 ...
  • 在分析Android事件分發機制前,明確android的兩大基礎控制項類型:View和ViewGroup。View即普通的控制項,沒有子佈局的,如Button、TextView. ViewGroup繼承自View,表示可以有子控制項,如Linearlayout、Listview這些。今天我們先來瞭解Vie ...
  • 自動添加上一些關於文件開頭的註釋信息: 增加函數註釋模板: 註意:先創建 Template Group 再創建 Live Template 增加函數註釋模板 ...
  • 通常我們在android使用javamail發送郵件,可是很多時候我們需要連接Exchange服務(很多公司內部郵件伺服器採用,並且未開通smtp服務)來發送郵件,這時候我們就要用到微軟的 ews-java-api。官方github的地址是:https://github.com/OfficeDev/ ...
  • 代碼: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. self.title=@"圓角矩形"; UIImageView *imageView=[[UIImage ...
  • iOS的沙盒機制,應用只能訪問自己應用目錄下的文件。iOS不像android,沒有SD卡概念,不能直接訪問圖像、視頻等內容。iOS應用產生的內容,如圖像、文件、緩存內容等都必須存儲在自己的沙盒內。預設情況下,每個沙盒含有3個文件夾:Documents, Library 和 tmp。Library包含 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...