Posts by Deivison Sporteman • 156 points
4 posts
-
1
votes1
answer1286
viewsA: Socket connection causes an exception on Android
Well, like Lucas said, Check that your Androidmanifest.xml has the following permissions: <uses-permission android:name="android.permission.INTERNET"/> <uses-permission…
-
1
votes1
answer140
viewsA: Xcode - Array position value is not displayed
Good afternoon, Your problem is simple, when you do [processesArray objectAtIndex:i] you are picking up an object of type Searchprocessosobj and your Nslog just showing its memory address. To show…
-
1
votes1
answer331
viewsA: Changing content of a Spinner via a radiobutton
You must be getting a certain Nullpointerexeception ? you’re just associating the attribute "technologies": tecnologias = (RadioButton) findViewById(R.id.radio1); letras = (RadioButton)…
androidanswered Deivison Sporteman 156 -
1
votes2
answers1364
viewsA: Sqlite error on Android : error code 11: database disk image is malformed
I think it is worth studying the possibility of implementing a PUSH service to synchronize your databases, so everything would be done in a "invisible" way to the user and also in a safer way. A…