Enter your query, example: how not cry when slicing onion or how to enter an Free Italian Sex Webcams?

Check edittext is empty android Videos

[Ultimate Android Course] 3.16#Checking to see if the edit text has text

[Ultimate Android Course] 3.16#Learn to make an innovative calculator# Checking to see if the edit text has text.

Java : Collection Framework : Vector (Check empty or not)

Java : Collection Framework : Vector (Check empty or not). JavaEE Tutorials and Sample code - Click here : //ramj2ee.blogspot.in/

Android Tutorial For Application Development-Set the Input Type of an EditText Part 27

how to set the input type of an edit text its shows in this tutorial so enjoy.. Check out the full series at //www.technozodiac.com //www.themobiforest.com ...

Tutorial Android Studio 4 - Controles Básicos - Creación de una Calculadora

En este tutorial les mostrare como usar los controles básicos como son los Textview, EditText y los Button, crearemos una calculadora básica usando los ...

User Comments

https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=64
Me podrian ayudar? Hice una calculadora para sumar, restar, dividi y multiplicar. El problema que tengo es que si quiero sumar mas de dos numeros digamos 1+2+3 el resultado me da igual a 5. Solo se estan guardando 2 valores. Soy novato en java , agradeceria mucho si alguien me ayuda
https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=64
+alexander lozano gracias , el codigo que tengo tambien hace eso. yo tengo mas o menos una idea de como poner a funcionar lo que quiero pero aun no he podido hacerlo,
https://lh5.googleusercontent.com/-wFttxUcgTAo/AAAAAAAAAAI/AAAAAAAAAC0/sxn0ouFLjCU/photo.jpg?sz=64
Mira en la calculadora del codigo que te envie lo hace asi primero toma dos numero 1+2  y le das igual que seria = 3luego le das + 4q daria  3 + 4 = 7asi funciona la que te envie.
https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=64
+alexander lozano Gracias por contestar. Este codigo hace lo mismo que el mio. El codigo me hace bien las funcionaes aritmeticas cuando preciono el boton de igual. Lo que no se hacer es como sumar mas de 2 numeros. Digamos que quiero sumar 1+2+3 (que seria 6). Cuando presiono 1+2 y luego presiono el boton de suma para sumar el tercer numero no se esta guardando la suma anterior (1+2) que en este caso seria 3. Al tratar de sumar 1+2+3 el resultado me da igual a 5, lo que me esta sumando es 2+3. No se si entiendes mi pregunta. Te agradescoo nuevamente por contestar.
https://lh5.googleusercontent.com/-wFttxUcgTAo/AAAAAAAAAAI/AAAAAAAAAC0/sxn0ouFLjCU/photo.jpg?sz=64
// Prueba este codigo package com.softalex.alex.calculator;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.util.Log;import android.view.Menu;import android.view.MenuItem;import android.view.View;import android.widget.Button;import android.widget.TextView;public class Calculator extends AppCompatActivity implements View.OnClickListener{ //Declaro las varibles que hire a trabajar. TextView txtdiplay; Button button0; Button button1; Button button2; Button button3; Button button4; Button button5; Button button6; Button button7; Button button8; Button button9; Button suma; Button resta; Button divide; Button multiplicar; Button borrar; Button igual; int numero1; int numero2; int resultado; String operacion; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.calculator); //guardo el resultado de cada boton en las variables declaradas anteriormente las cuales se hicieron globales. txtdiplay =(TextView) findViewById(R.id.editText); button0 = (Button)findViewById(R.id.button0); button1 = (Button)findViewById(R.id.button1); button2 = (Button)findViewById(R.id.button2); button3 = (Button)findViewById(R.id.button3); button4 = (Button)findViewById(R.id.button4); button5 = (Button)findViewById(R.id.button5); button6 = (Button)findViewById(R.id.button6); button7 = (Button)findViewById(R.id.button7); button8 = (Button)findViewById(R.id.button8); button9 = (Button)findViewById(R.id.button9); suma = (Button)findViewById(R.id.suma); resta = (Button)findViewById(R.id.resta); multiplicar = (Button)findViewById(R.id.multiplicar); divide = (Button)findViewById(R.id.dividir); igual = (Button)findViewById(R.id.igual); borrar = (Button)findViewById(R.id.borrar); //Implementamos la metodo setOnClickListener en toda la clase y le asignamos a cada boton un setOnClickListener. button0.setOnClickListener(this); button1.setOnClickListener(this); button2.setOnClickListener(this); button3.setOnClickListener(this); button4.setOnClickListener(this); button5.setOnClickListener(this); button6.setOnClickListener(this); button7.setOnClickListener(this); button8.setOnClickListener(this); button9.setOnClickListener(this); button9.setOnClickListener(this); suma.setOnClickListener(this); resta.setOnClickListener(this); multiplicar.setOnClickListener(this); divide.setOnClickListener(this); igual.setOnClickListener(this); borrar.setOnClickListener(this); } @Override public void onClick(View view) { //Creo una variable string donde guardare lo que obtenga txtdisplay segun sea el caso u operacion que se realise en la calculadora. String texto = txtdiplay.getText().toString(); switch (view.getId()){ case R.id.button0: txtdiplay.setText(texto + "0"); Log.v("numero",texto); break; case R.id.button1: txtdiplay.setText(texto + "1"); Log.v("numero", texto); break; case R.id.button2: txtdiplay.setText(texto + "2"); Log.v("numero",texto); break; case R.id.button3: txtdiplay.setText(texto + "3"); Log.v("numero", texto); break; case R.id.button4: txtdiplay.setText(texto + "4"); Log.v("numero", texto); break; case R.id.button5: txtdiplay.setText(texto + "5"); Log.v("numero", texto); break; case R.id.button6: txtdiplay.setText(texto + "6"); Log.v("numero", texto); break; case R.id.button7: txtdiplay.setText(texto + "7"); Log.v("numero",texto); break; case R.id.button8: txtdiplay.setText(texto + "8"); Log.v("numero", texto); break; case R.id.button9: txtdiplay.setText(texto + "9"); Log.v("numero", texto); break; case R.id.suma: numero1 = Integer.parseInt(texto); txtdiplay.setText(""); operacion = "+"; Log.v("Operacion",operacion); break; case R.id.resta: numero1 = Integer.parseInt(texto); txtdiplay.setText(""); operacion = "-"; Log.v("Operacion",operacion); break; case R.id.multiplicar: numero1 = Integer.parseInt(texto); txtdiplay.setText(""); operacion = "*"; Log.v("Operacion",operacion); break; case R.id.dividir: numero1 = Integer.parseInt(texto); txtdiplay.setText(""); operacion = "/"; Log.v("Operacion",operacion); break; case R.id.igual: numero2 = Integer.parseInt(texto); if(operacion.equals("+")){ resultado = numero1 + numero2; } if(operacion.equals("-")){ resultado = numero1 - numero2; } if(operacion.equals("*")){ resultado = numero1 * numero2; } if(operacion.equals("/")){ resultado = numero1 / numero2; } Log.v("operacion" ,"="); txtdiplay.setText(String.valueOf(resultado)); Log.v("resultado", String.valueOf(resultado)); operacion = "="; break; case R.id.borrar: txtdiplay.setText(""); Log.v("Borrado",""); } }
https://lh6.googleusercontent.com/-ImYvJ1jcW8I/AAAAAAAAAAI/AAAAAAAAAG4/5aO0qn7Xlrg/photo.jpg?sz=64
Muy buen video! El mejor explicado que encontré en youtube.
https://lh3.googleusercontent.com/-DFElPyqiAzk/AAAAAAAAAAI/AAAAAAAAAAA/iTvveKd0cbM/photo.jpg?sz=64
+Gabriel2311 amigo tu saves como mandar un parametro o un valor numerico de un activity a un fragment? y como recivirlo en el fragment? de favor :)
https://lh4.googleusercontent.com/-Fv1ROd6A7sA/AAAAAAAAAAI/AAAAAAAABTo/jbq9reY5010/photo.jpg?sz=64
me marca error en setContentView(R.layout.activity_main); me pone la letra R de color rojo
https://lh6.googleusercontent.com/-_obpw-9RFiI/AAAAAAAAAAI/AAAAAAAAAN8/X1J2v_ofrYo/photo.jpg?sz=64
+Axel Rams Moonwalk ubica activity_main.xml y ubica <LinearLayouten la 4ta linea coloca esto: android:id="@+id/LinearLayout" >
https://lh4.googleusercontent.com/-Fv1ROd6A7sA/AAAAAAAAAAI/AAAAAAAABTo/jbq9reY5010/photo.jpg?sz=64
+Eduardo Parra no, no pude.

Android Application Development Tutorial - 12 - Setting up an Activity and Using SetContentView

Visit my website at https://www.thenewboston.com/ for all of my videos and tutorials! Have questions or looking for source code? Check out the forum at ...

User Comments

https://lh6.googleusercontent.com/-7EGpj8-5Xjo/AAAAAAAAAAI/AAAAAAAAAFs/UnybuAI8MLE/photo.jpg?sz=64
i want to open second activity from first activity when i used to press button then from second activity i want to open third activity when i used to press another button i.e. placed inside second activity in android.
https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=64
+Shiraj Gagneja aaakar le fir

Android Application Development Tutorial - 47 - Passing a String between Activities

Visit my website at https://www.thenewboston.com/ for all of my videos and tutorials! Have questions or looking for source code? Check out the forum at ...

User Comments

https://lh4.googleusercontent.com/-2naLRerde0g/AAAAAAAAAAI/AAAAAAAAHp0/dU7DfYNAlWo/photo.jpg?sz=64
I'm stuck.. I use android studio and here " Intent a = new Intent(Get.this, OpenedClass.class);" I get the error "cannot resolve symbol OpenedClass"... No suggestions, or any similar method..any ideas?
https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=64
I think OpenedClass.class must be an existing .java class. So in other words replace it with the Activity class you want to pass values to.

Android AlertDialog - With Checkable ListViews

ProgrammingWizards Android AlertDialog With ListView with Checkboxes - checkable listview,check,uncheck,events,alertdialog builder,icon,title,listview ...
Sign up for free to join this conversation on fsaved.com.
Already have an account? Sign in to comment