12 Aralık 2016 Pazartesi

android.content.res.Resources$NotFoundException:

" FATAL EXCEPTION: main
                  android.content.res.Resources$NotFoundException: String resource ID #0x4
                      at android.content.res.Resources.getText
 "

This exception occours Even when the resource is presents 

It's most likely setting anything except string in text like here;
(Büyük ihtimalle setText() ederken aldığı değer string değil örnek;)

 int i=10;
mtextView.setText(i);

 it gets error above.It should be converted to string
(Yukarıdaki hatalı.Değerin tipi stringe çevirilmelidir)

SOLUTION:

 mtextView.setText(String.valueOf(i))

Hiç yorum yok:

Yorum Gönder