Domande taggate «illegalargumentexception»



30
Frammento Android nessuna vista trovata per ID?
Ho un frammento che sto cercando di aggiungere in una vista. FragmentManager fragMgr=getSupportFragmentManager(); feed_parser_activity content = (feed_parser_activity)fragMgr .findFragmentById(R.id.feedContentContainer); FragmentTransaction xaction=fragMgr.beginTransaction(); if (content == null || content.isRemoving()) { content=new feed_parser_activity(item.getLink().toString()); xaction .add(R.id.feedContentContainer, content) .setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN) .addToBackStack(null) .commit(); Log.e("Abstract", "DONE"); } Quando viene eseguito questo codice, viene visualizzato il seguente errore nel debug. …

12
java.lang.IllegalArgumentException: carattere non valido trovato nel nome del metodo. I nomi dei metodi HTTP devono essere token
Ricevo sotto la traccia dello stack quando sto distribuendo la mia applicazione in un ambiente Apache Tomcat 8 multi-server. Ricevo spesso questo errore e sembra che stia bloccando il thread Tomcat: INFO [http-nio-80-exec-4461] org.apache.coyote.http11.AbstractHttp11Processor.process Error parsing HTTP request header Note: further occurrences of HTTP header parsing errors will be logged …

9
La chiave deve essere un ID risorsa specifico dell'applicazione
Perché ottengo questa eccezione? 05-18 20:29:38.044: ERROR/AndroidRuntime(5453): java.lang.IllegalArgumentException: The key must be an application-specific resource id. 05-18 20:29:38.044: ERROR/AndroidRuntime(5453): at android.view.View.setTag(View.java:7704) 05-18 20:29:38.044: ERROR/AndroidRuntime(5453): at com.mypkg.viewP.inflateRow(viewP.java:518) la linea in questione è: ((Button) row.findViewById(R.id.btnPickContact)).setTag(TAG_ONLINE_ID,objContact.onlineid); e l'ho definito come: private static final int TAG_ONLINE_ID = 1;


Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.