나는 간단한 주문형 토스트를 가지고 있는데, 그 범위 내에서 잘 작동하지만 조각에 문제가있다. findviewbyid 메서드는 파편으로 작업하지 않습니다!
어떻게 해결할 수 있습니까?단편으로 된 사용자 토스트
LayoutInflater inflater = getLayoutInflater();
View layouttoast = inflater.inflate(R.layout.customtoast, (ViewGroup)findViewById(R.id.toastcustom));
((TextView) layouttoast.findViewById(R.id.texttoast)).setText(message);
layouttoast.findViewById(R.id.imagetoast)).setBackgroundResource(R.drawable.icon);
Toast mytoast = new Toast(getBaseContext());
mytoast.setView(layouttoast);
mytoast.setDuration(Toast.LENGTH_LONG);
mytoast.show();
멋진 답변이지만 asyncktask ..가 있고 내 asynctask에 맞춤 토스트를 사용하고 싶습니다.이 기능을 사용하면 도움이 될까요? –
AsyncTask가 조각 안에 있습니까? – rom4ek
return parent..i 후에 asyncktask .. –