Custom Toast, android custom toast

Source: Internet
Author: User

Custom Toast, android custom toast

1. Define a layout in the xml file

For example:

<? Xml version = "1.0" encoding = "UTF-8"?> <TextView xmlns: android = "http://schemas.android.com/apk/res/android" android: layout_centerInParent = "true" android: id = "@ + id/toast_by_text" android: layout_width = "wrap_content" android: layout_height = "wrap_content" android: textSize = "18sp" android: textColor = "# ffffff" android: paddingTop = "2dp" android: paddingBottom = "2dp" android: gravity = "center" android: layout_marginTop = "3dp" android: layout_marginBottom = "3dp" android: layout_centerHorizontal = "true" android: text = "Please wait"/>

2. Sample Java code

LayoutInflater inflater = activity. getLayoutInflater (); View layout = inflater. inflate (R. layout. test_toast, null); TextView textView = (TextView) layout. findViewById (R. id. toast_by_text); textView. setText ("Please wait"); Toast toast = new Toast (activity); toast. setGravity (Gravity. CENTER_VERTICAL, 0, 0); toast. setDuration (Toast. LENGTH_SHORT); toast. setView (layout); toast. show ();


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.