private void showToast(int index) {
String versionName = androidVersions[index];
int iconId = androidIcons[index];
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.custom_toast_layout, null);
TextView toastTextView = layout.findViewById(R.id.toastText);
ImageView toastImageView = layout.findViewById(R.id.toastIcon);
toastTextView.setText(versionName);
toastImageView.setImageResource(iconId);
Toast toast = new Toast(getApplicationContext());
toast.setDuration(Toast.LENGTH_SHORT);
toast.setView(layout); // Set the custom layout
toast.show();
}
androidvercode