Posts by Anjosi • 1 point
4 posts
-
-1
votes1
answer18
viewsA: How to call a method from another Activity using checkbox?
//voce chamara a tela desta forma button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (checkBox.isChecked()) { Intent intent = new…
-
0
votes1
answer26
viewsA: insert data date sqlite - java
// o correto para transformar uma string em um date é usar o parse public void add(String date) { SQLiteDatabase db = this.getWritableDatabase(); SimpleDateFormat dateFormat = new…
-
-1
votes1
answer36
viewsA: Object of listview for each Manactivity
For your problem here is the solution. //modelo 1 lista.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView<?> adapterView, View view,…
-
0
votes1
answer42
viewsA: How do I add a value that I calculated from an informed data that appears in a new Textview?
Here’s your answer. Tend to understand everything I’ve done. MVC WEEPS TO SEE THIS What is mvc. public class MainActivity extends Activity { EditText txtNome, txtIdade, txtFrequenciaCardiaca; Button…