Posts by Arthur Avner Cabral Alves • 1 point
4 posts
-
0
votes2
answers105
viewsA: Change Textview with Listview event
Declare Runnable run; In your onCreate run = new Runnable() { public void run() { adapter.notifyDataSetChanged(); listView.invalidateViews(); listView.refreshDrawableState(); } }; After modification…
-
0
votes1
answer60
viewsA: Get multiple edittext results in a Recyclerview
Souza, You must create an Adapter, and in the getView method you define what should be displayed at each recyclerview position. public class ExemploAdapter extends BaseAdapter { @Override public int…
-
0
votes1
answer163
viewsA: Send object with android object list to SOAP web service in C#, using ksoap2
I decided as follows: envelopeGravarNfe.dotNet = true; And creating a Propertyinfo for each attribute, with its respective NAMESPACE.…
-
0
votes1
answer163
viewsQ: Send object with android object list to SOAP web service in C#, using ksoap2
I send an object containing a list of objects, the web service recognizes the object but does not recognize the list. This is the source code: public RetornoDto GravarRecebimentoNf (NotaFiscal nf,…