بناء على الطلب في الحلقة السابقة من قبل أحد زوار المدونة أضع في هذه المرة كوداً لاستعمال الـ Toast Message أو التنبيه الطافي. الكود عبارة عن كلاس يستعمل الـ Toast من خلال واجهة مخصصة Custom Layout. استعملت هذا الكود في تطبيق iAndroidQuran وأحببت وضعه هنا.
مثال على التنبيه من تطبيق iAndroidQuran:
الواجهة الرسومية – toast_layout.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toast_layout_root"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:layout_marginLeft="25dp"
android:layout_marginRight="25dp"
android:background="@drawable/toast_background"
>
<ImageView android:id="@+id/custom_toast_image"
android:layout_width="42px"
android:layout_height="42px"
android:layout_marginRight="10dp"
[...]

