Android 警报库 Alerter

码农软件 · 软件分类 · 提醒 (Notification) · 2019-05-20 22:42:33

软件介绍

Alerter 是一个 Android 警报库,旨在克服 Toasts 和 Snackbars 的局限性,降低布局的复杂性。


Gradle

dependencies {
    compile 'com.tapadoo.android:alerter:1.0.2'
}

Usage

考虑到简单性,Alerter 采用了构建器模式,以便于轻松集成到任何应用程序中。

From an Activity -

Alerter.create(this)
       .setTitle("Alert Title")
       .setText("Alert text...")
       .show();

Or from a Fragment -

Alerter.create(getActivity())
       .setTitle("Alert Title")
       .setText("Alert text...")
       .show();

Customisation

可自定义背景颜色

Alerter.create(this)
       .setTitle("Alert Title")
       .setText("Alert text...")
       .setBackgroundColor(R.color.colorAccent)
       .show();


可自定义图标

Alerter.create(this)
       .setText("Alert text...")
       .setIcon(R.drawable.ic_face)
       .show();

本文地址:https://www.codercto.com/soft/d/6191.html

Bulletproof Web Design

Bulletproof Web Design

Dan Cederholm / New Riders Press / 28 July, 2005 / $39.99

No matter how visually appealing or packed with content a Web site is, it isn't succeeding if it's not reaching the widest possible audience. Designers who get this guide can be assured their Web site......一起来看看 《Bulletproof Web Design》 这本书的介绍吧!

SHA 加密
SHA 加密

SHA 加密工具

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具