1-) Android - DİNAMİK COMPANENT OLUŞTURMAK VE TOAST İLE DÜZENLEMEK
public void onClick(View v) {
TextView textView=new TextView(getApplicationContext());
textView.setText("bu bir özelleşmiş toast mesajıdır");
textView.setBackgroundColor(Color.parseColor("#673AB7"));
textView.setTextColor(Color.WHITE);
Toast toast=new Toast(getApplicationContext());
toast.setView(textView);
toast.setDuration(Toast.LENGTH_LONG);
toast.show(); }