Click here to Skip to main content
15,880,469 members
Home / Discussions / Android
   

Android

 
QuestionANDROID STUDIO The System cannot find the path specified Pin
Saboor880217-Jan-22 2:56
Saboor880217-Jan-22 2:56 
QuestionXamarin Forms INavigation Pin
Kevin Marois6-Jan-22 11:20
professionalKevin Marois6-Jan-22 11:20 
QuestionE-Wallet App Development Pin
zoey laurance22-Nov-21 2:36
zoey laurance22-Nov-21 2:36 
AnswerRe: E-Wallet App Development Pin
OriginalGriff22-Nov-21 2:38
mveOriginalGriff22-Nov-21 2:38 
GeneralRe: E-Wallet App Development Pin
Richard Deeming22-Nov-21 2:54
mveRichard Deeming22-Nov-21 2:54 
GeneralRe: E-Wallet App Development Pin
OriginalGriff22-Nov-21 2:59
mveOriginalGriff22-Nov-21 2:59 
GeneralRe: E-Wallet App Development Pin
CHill6011-Jan-22 2:16
mveCHill6011-Jan-22 2:16 
QuestionLogin With Firebase Pin
ncir jaweher19-Nov-21 11:44
ncir jaweher19-Nov-21 11:44 
Hello please some one help me how con i do the login.java
this my code of Inscription
    //creation instance du la base
    databaseReference = FirebaseDatabase.getInstance().getReference().child("user").child("authenification_User");


    isncritUser.setOnClickListener(new View.OnClickListener() {
        <a href="https://www.codeproject.com/Members/OverRide">@Override</a>
        public void onClick(View v) {

            if(txtLogin.getText().toString().isEmpty()
                    && editPassworduser.getText().toString().isEmpty()
                    && num.getText().toString().isEmpty()
                    && email.getText().toString().isEmpty()
                    && verifPassworduser.getText().toString().isEmpty() )
            {
                Toast.makeText(InscriptionUser.this,"Remplir les chomps",Toast.LENGTH_SHORT).show();
            }
            else if(txtLogin.getText().toString().isEmpty()
                    || editPassworduser.getText().toString().isEmpty()

                    ||  verifPassworduser.getText().toString().isEmpty()
                    ||  num.getText().toString().isEmpty()
                    ||  email.getText().toString().isEmpty()

            )
            {
                Toast.makeText(InscriptionUser.this,"Remplir Tout les chomps",Toast.LENGTH_SHORT).show();
            }




            else if(!verifPassworduser.getText().toString().equals(editPassworduser.getText().toString()))
            {
                Toast.makeText(InscriptionUser.this,"Password ne pas vrai",Toast.LENGTH_SHORT).show();
            }
            else if(!txtLogin.getText().toString().isEmpty()
                    && !editPassworduser.getText().toString().isEmpty()
                    && !verifPassworduser.getText().toString().isEmpty()
                    && !verifPassworduser.getText().toString().isEmpty()
                    && !num.getText().toString().isEmpty()
                    && !email.getText().toString().isEmpty()
                    &&verifPassworduser.getText().toString().equals(editPassworduser.getText().toString())
            )
            {
                insert();
                Intent i=new Intent(InscriptionUser.this,profilUser.class);
                startActivity(i);
            }
            else{
                Toast.makeText(InscriptionUser.this,"Verifier  votre connexion",Toast.LENGTH_SHORT).show();
            }

        }
    });

}



private void  insert()
{
    String login=txtLogin.getText().toString();
    String password=editPassworduser.getText().toString();
    String numero=num.getText().toString();
    String mail=email.getText().toString();

      user user=new user(login,password,numero,mail);
      //pour gener un unique key a chaque user en utlise push
      databaseReference.push().setValue(user);
      Toast.makeText(InscriptionUser.this,"user inserted",Toast.LENGTH_SHORT).show();

QuestionRe: Login With Firebase Pin
David Crow21-Nov-21 3:49
David Crow21-Nov-21 3:49 
Questionandroid development Pin
katleho motumi10-Oct-21 4:52
katleho motumi10-Oct-21 4:52 
AnswerRe: android development Pin
Mycroft Holmes10-Oct-21 11:54
professionalMycroft Holmes10-Oct-21 11:54 
QuestionRe: android development Pin
David Crow11-Oct-21 2:05
David Crow11-Oct-21 2:05 
AnswerRe: android development Pin
yeda sedo27-Oct-21 8:12
yeda sedo27-Oct-21 8:12 
AnswerRe: android development Pin
Jigar365-Dec-21 23:23
Jigar365-Dec-21 23:23 
AnswerRe: android development Pin
Becky Claskron25-Apr-22 9:20
Becky Claskron25-Apr-22 9:20 
QuestionHow can I determine the cost to develop an Android mobile app? Pin
Arth Shah28-Sep-21 3:17
Arth Shah28-Sep-21 3:17 
AnswerRe: How can I determine the cost to develop an Android mobile app? Pin
David Crow11-Oct-21 2:07
David Crow11-Oct-21 2:07 
GeneralRe: How can I determine the cost to develop an Android mobile app? Pin
Eliana Wilson6-Jan-22 0:02
professionalEliana Wilson6-Jan-22 0:02 
AnswerRe: How can I determine the cost to develop an Android mobile app? Pin
Rockie Steve20-Nov-21 1:35
Rockie Steve20-Nov-21 1:35 
QuestionHow to create folder in android root folder Pin
Chi Promoter24-Sep-21 1:25
Chi Promoter24-Sep-21 1:25 
AnswerRe: How to create folder in android root folder Pin
Richard MacCutchan24-Sep-21 2:21
mveRichard MacCutchan24-Sep-21 2:21 
AnswerRe: How to create folder in android root folder Pin
Andrew Stark29-Oct-21 1:31
Andrew Stark29-Oct-21 1:31 
QuestionInteraction with notifications Pin
Eugenio Roverato31-Jul-21 23:13
Eugenio Roverato31-Jul-21 23:13 
AnswerRe: Interaction with notifications Pin
Richard MacCutchan1-Aug-21 0:51
mveRichard MacCutchan1-Aug-21 0:51 
GeneralRe: Interaction with notifications Pin
Eugenio Roverato1-Aug-21 4:28
Eugenio Roverato1-Aug-21 4:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.