Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/196.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android登录替代方案_Android_Login_Oauth_Registration - Fatal编程技术网

Android登录替代方案

Android登录替代方案,android,login,oauth,registration,Android,Login,Oauth,Registration,目前我正在实现各种各样的功能,但有一件事让我感到惊讶,那就是Android登录机制。我不太确定在不同的应用程序(所有应用程序都在访问internet)中选择哪种登录机制 假设我有两个应用程序: 答:这个应用程序基本上应该连接到服务器,让用户聊天-我们可以看到在线用户列表(没有花名册,每个人都是朋友),所以它是一个聊天应用程序 B.此应用程序应向服务器进行身份验证,并允许用户将消息发布到他们的墙上或其他地方,因此当其他用户联机时,它将立即向他显示这些消息 我故意使用“连接到服务器”来尝试通用

目前我正在实现各种各样的功能,但有一件事让我感到惊讶,那就是Android登录机制。我不太确定在不同的应用程序(所有应用程序都在访问internet)中选择哪种登录机制

假设我有两个应用程序:

  • 答:这个应用程序基本上应该连接到服务器,让用户聊天-我们可以看到在线用户列表(没有花名册,每个人都是朋友),所以它是一个聊天应用程序
  • B.此应用程序应向服务器进行身份验证,并允许用户将消息发布到他们的墙上或其他地方,因此当其他用户联机时,它将立即向他显示这些消息

我故意使用“连接到服务器”来尝试通用性,因为这是我想知道的。我应该使用什么类型的身份验证,以便我的服务器知道该用户是合法用户:

  • 1) 自定义注册+登录:我不想使用它,因为用户不想注册另一个用户名,而且有很多备选方案

  • 2) OpenID:当我只需要经过身份验证的用户,而不需要在任何网站上访问他们的私人信息时,我应该使用此选项。我不太喜欢这个,因为浏览器需要打开才能工作

  • 3) OAuth:与OpenID相同,但我也可以访问用户的私有资源。这里也有同样的问题,浏览器需要打开并交换密钥和令牌,因此不会带来太好的用户体验

  • 4) AccountManager:这是一个非常好的选择,但我不喜欢它,因为它不是应用程序的一部分。我甚至不知道当用户点击登录按钮,AccountManager弹出时会发生什么。如果我选择AccountManager中列出的现有帐户,如果我想选择其他帐户,如Yahoo等,AccountManager可以注册、登录并返回经过身份验证的应用程序吗


我非常希望听到我可以使用的4个备选方案的现有实现。我知道外面有很多,我不想把它们列在这里,我知道。唯一的问题是,我不知道使用哪一个,这将以我想要的方式完成工作。以下是我想要的东西列表:

  • 1) 在应用程序中,当用户单击登录按钮时,应该会打开一些东西,让用户在以下选项中进行选择:Google、Facebook、Yahoo、Twitter。用户应使用任何帐户登录,该帐户应标记为已验证

  • 2) 然后,该帐户应该是用户作为访问令牌,以向我的服务器进行身份验证-因此我的服务器只接受令牌并检查它是否有效

这一点的关键是,我不必在我的服务器上实现登录机制,但用户仍然可以通过我的服务器进行身份验证,因此我们可以交换一些数据,等等。

package com.myapplication;
    package com.myapplication;

    import android.os.Bundle;
    import android.os.Handler;
    import android.support.v7.app.AppCompatActivity;
    import android.text.Editable;
    import android.text.InputType;
    import android.text.TextUtils;
    import android.text.TextWatcher;
    import android.text.method.PasswordTransformationMethod;
    import android.view.Menu;
    import android.view.MenuItem;
    import android.view.View;
    import android.widget.EditText;
    import android.widget.TextView;
    import android.widget.Button;
    import android.widget.Toast;

    public class LoginActivity extends AppCompatActivity {
        EditText login_uname, login_pwd;
        TextView invalid_error;
        Button login_btn;
        private boolean canExit;
        TextView pword_showhide;

        // string login_un,login_pw;
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.login_screen);

            login_uname = (EditText) findViewById(R.id.login_username);
            login_pwd = (EditText) findViewById(R.id.login_password);
            invalid_error = (TextView) findViewById(R.id.InvalidError);
            login_btn = (Button) findViewById(R.id.login_btn);
            // loginbutton.setEnabled(false);
            invalid_error.setVisibility(View.GONE);
            pword_showhide = (TextView) findViewById(R.id.pwd_showhide);
            // pword_showhide.setText("show");
            pword_showhide.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    if (login_pwd.getInputType() == InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD) {
                        login_pwd.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
                        pword_showhide.setText("show");
                    } else {
                        login_pwd.setInputType(InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD);
                        pword_showhide.setText("hide");
                    }
                    login_pwd.setSelection(login_pwd.getText().length());
                }
            });
            checkValidation();
            login_uname.addTextChangedListener(mWatcher);
            login_pwd.addTextChangedListener(mWatcher);
        }

        private void checkValidation() {
            // TODO Auto-generated method stub
            if ((TextUtils.isEmpty(login_uname.getText())) || (TextUtils.isEmpty(login_pwd.getText())))
                login_btn.setEnabled(false);
            else {
                login_btn.setEnabled(true);
            }
        }

        TextWatcher mWatcher = new TextWatcher() {
            @Override
            public void onTextChanged(CharSequence s, int start, int before, int count) {
                // TODO Auto-generated method stub
                checkValidation();
            }

            @Override
            public void beforeTextChanged(CharSequence s, int start, int count, int after) {
                // TODO Auto-generated method stub
            }

            @Override
            public void afterTextChanged(Editable s) {
                // TODO Auto-generated method stub
            }
        };

        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.menu_main, menu);
            return true;
        }

        @Override
        public boolean onOptionsItemSelected(MenuItem item) {
            // Handle action bar item clicks here. The action bar will
            // automatically handle clicks on the Home/Up button, so long
            // as you specify a parent activity in AndroidManifest.xml.
            int id = item.getItemId();
            //noinspection SimplifiableIfStatement
            if (id == R.id.action_settings) {
                return true;
            }
            return super.onOptionsItemSelected(item);
        }

        @Override
        public void onBackPressed() {
            if (canExit)
                super.onBackPressed();
            else {
                canExit = true;
                Toast.makeText(getApplicationContext(), "Press again to Exit", Toast.LENGTH_SHORT).show();
            }
            mHandler.sendEmptyMessageDelayed(1, 2000/*time interval to next press in milli second*/);// if not pressed within 2seconds then will be setted(canExit) as false
        }

        private Handler mHandler = new Handler() {
            public void handleMessage(android.os.Message msg) {
                switch (msg.what) {
                    case 1:
                        canExit = false;
                        break;
                    default:
                        break;
                }
            }
        };
    }



 login_screen.xml:
    ------------------
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".LoginActivity">
        <TextView
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:text="Invalid Login Details"
            android:id="@+id/InvalidError"
            android:gravity="center"
            android:background="#ff3a0f"
            android:textColor="#FFF"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true" />
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="fill_parent"
            android:layout_margin="50dp"
            android:layout_centerVertical="true"
            android:layout_centerHorizontal="true"
            android:id="@+id/login_lyt">
            <EditText
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:id="@+id/login_username"
                android:layout_alignParentTop="true"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true"
                android:hint="User Name"
                android:drawableLeft="@drawable/icon_username"
                android:layout_marginTop="141dp" />
            <EditText
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:inputType="textPassword"
                android:hint="******"
                android:drawableLeft="@drawable/icon_password"
                android:ems="10"
                android:id="@+id/login_password"
                android:layout_centerVertical="true"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true"
                android:layout_alignParentRight="true"
                android:layout_alignParentEnd="true" />
            <TextView
                android:id="@+id/pwd_showhide"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignBaseline="@+id/login_password"
                android:layout_alignBottom="@+id/login_password"
                android:layout_alignParentRight="true"
                android:text="show" />
            <Button
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="Login"
                android:background="#f0a422"
                android:id="@+id/login_btn"
                android:layout_below="@+id/login_password"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true"
                android:layout_marginTop="31dp"
                android:layout_alignParentRight="true"
                android:layout_alignParentEnd="true" />
        </RelativeLayout>
    </RelativeLayout>
导入android.os.Bundle; 导入android.os.Handler; 导入android.support.v7.app.AppActivity; 导入android.text.Editable; 导入android.text.InputType; 导入android.text.TextUtils; 导入android.text.TextWatcher; 导入android.text.method.PasswordTransformationMethod; 导入android.view.Menu; 导入android.view.MenuItem; 导入android.view.view; 导入android.widget.EditText; 导入android.widget.TextView; 导入android.widget.Button; 导入android.widget.Toast; 公共类LoginActivity扩展了AppCompatActivity{ 编辑文本登录,登录密码; TextView无效_错误; 按钮登录_btn; 私人资本退出; 文本视图pword_showhide; //字符串login_un,login_pw; @凌驾 创建时受保护的void(Bundle savedInstanceState){ super.onCreate(savedInstanceState); setContentView(R.layout.login_屏幕); login\u uname=(EditText)findViewById(R.id.login\u用户名); login_pwd=(EditText)findviewbyd(R.id.login_密码); 无效的_错误=(TextView)findViewById(R.id.InvalidError); login\u btn=(按钮)findviewbyd(R.id.login\u btn); //loginbutton.setEnabled(false); 无效的_错误。设置可见性(View.GONE); pword_showhide=(TextView)findviewbyd(R.id.pwd_showhide); //pword_showhide.setText(“show”); pword_showhide.setOnClickListener(新视图.OnClickListener(){ @凌驾 公共void onClick(视图){ if(login\u pwd.getInputType()==InputType.TYPE\u TEXT\u VARIATION\u VISIBLE\u PASSWORD){ login_pwd.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD); pword_showhide.setText(“show”); }否则{ 登录\u pwd.setInputType(InputType.TYPE\u TEXT\u VARIATION\u VISIBLE\u PASSWORD); pword_showhide.setText(“隐藏”); } login_pwd.setSelection(login_pwd.getText().length()); } }); checkValidation(); 登录\ uname.addTextChangedListener(mWatcher); 登录名_pwd.addTextChangedListener(mWatcher); } 私有void checkValidation(){ //TODO自动生成的方法存根 if((TextUtils.isEmpty(login_uname.getText()))| |(TextUtils.isEmpty(login_pwd.getText())) 登录\u btn.setEnabled(false); 否则{ 登录\u btn.setEnabled(true); } } TextWatcher mWatcher=新的TextWatcher(){ @凌驾 public void onTextChanged(字符序列、int start、int before、int count){
    package com.myapplication;

    import android.os.Bundle;
    import android.os.Handler;
    import android.support.v7.app.AppCompatActivity;
    import android.text.Editable;
    import android.text.InputType;
    import android.text.TextUtils;
    import android.text.TextWatcher;
    import android.text.method.PasswordTransformationMethod;
    import android.view.Menu;
    import android.view.MenuItem;
    import android.view.View;
    import android.widget.EditText;
    import android.widget.TextView;
    import android.widget.Button;
    import android.widget.Toast;

    public class LoginActivity extends AppCompatActivity {

        EditText login_uname, login_pwd;
        TextView invalid_error;
        Button login_btn;
        private boolean canExit;
        TextView pword_showhide;

        // string login_un,login_pw;
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.login_screen);

            login_uname = (EditText) findViewById(R.id.login_username);
            login_pwd = (EditText) findViewById(R.id.login_password);
            invalid_error = (TextView) findViewById(R.id.InvalidError);
            login_btn = (Button) findViewById(R.id.login_btn);
            // loginbutton.setEnabled(false);
            invalid_error.setVisibility(View.GONE);
            pword_showhide = (TextView) findViewById(R.id.pwd_showhide);
            // pword_showhide.setText("show");
            pword_showhide.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    if (login_pwd.getInputType() == InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD) {
                        login_pwd.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
                        pword_showhide.setText("show");
                    } else {
                        login_pwd.setInputType(InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD);
                        pword_showhide.setText("hide");
                    }
                    login_pwd.setSelection(login_pwd.getText().length());
                }
            });
            checkValidation();
            login_uname.addTextChangedListener(mWatcher);
            login_pwd.addTextChangedListener(mWatcher);
        }
        private void checkValidation() {
            // TODO Auto-generated method stub
            if ((TextUtils.isEmpty(login_uname.getText())) || (TextUtils.isEmpty(login_pwd.getText())))
                login_btn.setEnabled(false);
            else {
                login_btn.setEnabled(true);
            }
        }
        public void login(View view) {
            if (login_uname.getText().toString().equals("a") && login_pwd.getText().toString().equals("a")) {
                invalid_error.setVisibility(View.GONE);
                Toast.makeText(getApplicationContext(), "Login Success", Toast.LENGTH_LONG).show();
                login_uname.setCompoundDrawablesWithIntrinsicBounds(R.drawable.icon_username, 0, 0, 0);
                login_pwd.setCompoundDrawablesWithIntrinsicBounds(R.drawable.icon_password, 0, 0, 0);
                //correcct password
            } else {
                //wrong password
                invalid_error.setVisibility(View.VISIBLE);
                Toast.makeText(getApplicationContext(), "Login fail", Toast.LENGTH_LONG).show();
                login_uname.setCompoundDrawablesWithIntrinsicBounds( R.drawable.error_username, 0, 0, 0);
                login_pwd.setCompoundDrawablesWithIntrinsicBounds( R.drawable.error_password,0, 0, 0);
            }
        }
        TextWatcher mWatcher = new TextWatcher() {
            @Override
            public void onTextChanged(CharSequence s, int start, int before, int count) {
                // TODO Auto-generated method stub
                checkValidation();
            }
            @Override
            public void beforeTextChanged(CharSequence s, int start, int count, int after) {
                // TODO Auto-generated method stub
            }
            @Override
            public void afterTextChanged(Editable s) {
                // TODO Auto-generated method stub
            }
        };
        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.menu_main, menu);
            return true;
        }
        @Override
        public boolean onOptionsItemSelected(MenuItem item) {
            // Handle action bar item clicks here. The action bar will
            // automatically handle clicks on the Home/Up button, so long
            // as you specify a parent activity in AndroidManifest.xml.
            int id = item.getItemId();
            //noinspection SimplifiableIfStatement
            if (id == R.id.action_settings) {
                return true;
            }
            return super.onOptionsItemSelected(item);
        }
        @Override
        public void onBackPressed() {
            if (canExit)
                super.onBackPressed();
            else {
                canExit = true;
                Toast.makeText(getApplicationContext(), "Press again to Exit", Toast.LENGTH_SHORT).show();
            }
            mHandler.sendEmptyMessageDelayed(1, 2000/*time interval to next press in milli second*/);// if not pressed within 2seconds then will be setted(canExit) as false
        }
        private Handler mHandler = new Handler() {

            public void handleMessage(android.os.Message msg) {

                switch (msg.what) {
                    case 1:
                        canExit = false;
                        break;
                    default:
                        break;
                }
            }
        };

    }

login_screen.xml
----------------
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".LoginActivity">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text="Invalid Login Details"
        android:id="@+id/InvalidError"
        android:gravity="center"
        android:background="#ff3a0f"
        android:textColor="#FFF"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true" />
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_margin="50dp"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:id="@+id/login_lyt">
        <EditText
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:id="@+id/login_username"
            android:layout_alignParentTop="true"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:hint="User Name"
            android:drawableLeft="@drawable/icon_username"
            android:layout_marginTop="141dp" />
        <EditText
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:inputType="textPassword"
            android:hint="******"
            android:drawableLeft="@drawable/icon_password"
            android:ems="10"
            android:id="@+id/login_password"
            android:layout_centerVertical="true"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true" />
        <TextView
            android:id="@+id/pwd_showhide"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBaseline="@+id/login_password"
            android:layout_alignBottom="@+id/login_password"
            android:layout_alignParentRight="true"
            android:text="show" />
        <Button
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="Login"
            android:onClick="login"
            android:background="#f0a422"
            android:id="@+id/login_btn"
            android:layout_below="@+id/login_password"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_marginTop="31dp"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true" />
    </RelativeLayout>
</RelativeLayout>