Toast(토스트)?

애플리케이션 위에 잠깐 떠있다 사라지는 뷰로서 간단한 메시지를 보여주기 위해 사용된다.

 

-사용법1-

Toast.makeText(getApplicationContext(), "하이!!", Toast.LENGTH_SHORT).show(); 

 

 

-사용법2-

Toast toast = Toast.makeText(getApplicationContext(), "하이!!", Toast.LENGTH_SHORT);
toast.show();

 

 

-사용법3(위치바꿈)-

Toast toast = Toast.makeText(getApplicationContext(), "하이!!", Toast.LENGTH_SHORT);
toast.setGravity(Gravity.TOP|Gravity.LEFT, 200, 200);
toast.show();

설명->

setGravity(정렬위치,x축,y축);

 

 

-사용법4(모양바꿈)-

일딴, 사용할 Toast모양을 새로 layout을 만들어 주어야한다.

toaststyle.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/toast_layout_root">

    <TextView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/toast"
        android:padding="30dp"
        android:textSize="100dp"/>

</LinearLayout>

만들어 준다음에,

자바 코드에다가

LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.toaststyle, (ViewGroup)findViewById(R.id.toast_layout_root));
TextView text = layout.findViewById(R.id.text);
text.setText("Custom Toast");

Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER, 0, 0);
toast.setDuration(Toast.LENGTH_SHORT);
toast.setView(layout);
toast.show();

이렇게 사용하면 된다.