• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="UTF-8"?>
2<!-- Thanks to http://hustleplay.wordpress.com/2009/07/23/replicating-default-android-toast/ ! -->
3<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4android:id="@+id/toast_layout_root"
5android:orientation="horizontal"
6android:layout_width="fill_parent"
7android:layout_height="fill_parent"
8android:padding="10dp"
9android:background="@drawable/custom_toast_border"
10>
11<TextView android:id="@+id/text"
12android:layout_width="wrap_content"
13android:layout_height="fill_parent"
14android:textColor="#65ff99"
15android:textSize="30sp"
16android:textStyle="bold"
17android:gravity="center"
18/>
19</LinearLayout>