カスタムのアニメーション トースト メッセージを作成する必要があります。今、それが可能かどうかを知る必要があります。カスタム ビューでトーストを作成しましたが、トーストにカスタム アニメーションを追加する方法がわかりません。
ここに私がこれまでに持っているコードがあります。
private void showToast() {
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.custom_toast,
(ViewGroup) findViewById(R.id.custom_toast_layout_id));
// set a message
TextView text = (TextView) layout.findViewById(R.id.toast_text);
text.setText("Button is clicked!");
// Toast...
Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout);
toast.show();
}
});
}