1. Toast메세지가 띄워지는 화면에서의 위치 지정하기





button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Toast toast = Toast.makeText(getApplicationContext(), "toast!", Toast.LENGTH_LONG);


toast.setGravity(Gravity.TOP|Gravity.LEFT, 200, 200);


toast.show();
}
});


setGravity()메소드를 사용하여 토스트메세지의 위치를 지정해준다.


setGravity( (1) Gravity 상수값(2) x축 offset,  (3) y축 offset );


그다음 평소에 하던대로 toast.show(); 호출하면 끄읏






2. Toast메세지의 생김새 바꾸기



button.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View view) {
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.toast_border, (ViewGroup)findViewById(R.id.toast_layout_root));

TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("new TOAST");

Toast toast = new Toast(getApplicationContext());
toast.setDuration(Toast.LENGTH_LONG);
toast.setGravity(Gravity.TOP|Gravity.LEFT, 200, 200);
toast.setView(layout);
toast.show();
}
});



* R.layout.toast_border xml파일


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
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:padding="20dp"
android:textSize="40dp"
android:textColor="@color/colorPrimary"
android:background="@drawable/toast"/>

// 여기서 android:background(배경) 지정 안하면, 투명배경에 검정글씨(기존 TextView 디폴트 background)

</LinearLayout>



* 바로 위 toast_border.xml 에서 TextView의 android:background 속성에 사용되는 R.drawable/toast xml 파일


<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<stroke android:width="4dp" android:color="#ffffff00"/>
<solid android:color="#ff883300"/>
<padding android:bottom="20dp" android:left="20dp" android:right="20dp" android:top="20dp"/>
<corners android:radius="15dp"/>
</shape>



+ Recent posts