Posts by V. Godoy • 27 points
4 posts
-
1
votes0
answers85
viewsQ: Error on Android and iOS platforms, Httpclient.Getasync(Uri requestUri) function redirected to URL
I am developing a Xamarin Forms application that basically uses the Getasync function through Httpclient(Uri requestUri): HttpClient httpClient = new HttpClient(new NativeMessageHandler()); var uri…
-
-2
votes2
answers496
viewsA: How to calculate a value while the user types in an Android application?
Apparently the error is in that stretch: valorTotal.setText(total.toString()); instead of converting this way try to change this line to: valorTotal.setText(String.valueOf(total));…
-
1
votes2
answers748
viewsA: When I create two tables in Android Sqlite, only one works
The problem is in the database version, the solution was to uninstall and install apk, this solved my problem. Link from where the solution was found: stackoverflow.com/questions/21069532/...…
-
1
votes2
answers748
viewsQ: When I create two tables in Android Sqlite, only one works
I’m trying to develop a test app that requires two tables (aluno and disciplina) in class DataHelper. I create two tables, but when testing, only the table Aluno works. In summary: the application…