Posts by Lucas Moresco • 51 points
3 posts
-
2
votes2
answers1212
viewsA: How to make a Listview "Clickable"?
You must create a Istener this way: list.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {…
-
1
votes3
answers440
viewsA: Why does Edittexts information disappear when I change Victoria?
For some reason your Activity must be being destroyed and possibly the method onCreate() is being called again to recreate your Activity again. This occurs when the smartphone needs memory, maybe…
-
2
votes2
answers16877
viewsA: How to pass data from one Activity to another
There are some ways to "chat" between Activities, to simply send some information to other Activities, you can use the Bundle in this way: Bundle bundle = new Bundle();…