3

現在色々と実装していますが、一つ気になるのがAndroid Login Mechanismです。さまざまなアプリケーション (すべてのアプリケーションがインターネットにアクセスしている場合) で、どのログイン メカニズムを選択すればよいかよくわかりません。

2 つのアプリがあるとします。

  • A: このアプリは基本的に、サーバーに接続してユーザーがチャットできるようにする必要があります。オンラインのユーザー リスト (名簿はなく、全員が全員と友達) を確認できるので、チャット アプリケーションです。
  • B. このアプリはサーバーに対して認証し、ユーザーが自分の WALL などにメッセージを投稿できるようにする必要があります。そのため、他のユーザーがオンラインになると、それらのメッセージが即座に表示されます。

これは私が知りたいことなので、意図的に「サーバーに接続する」を使用しています。サーバーがユーザーが正当なユーザーであることを認識できるようにするには、どのタイプの認証を使用する必要がありますか。

  • 1)カスタム登録 + ログイン:ユーザーは別のユーザー名を登録したくないので、私はそれを使用したくありません。

  • 2) OpenID:認証されたユーザーのみが必要な場合に、これを使用する必要があります。どのサイトでもユーザーの個人情報にアクセスする必要はありません。これが機能するにはブラウザを開く必要があるため、私はこれがあまり好きではありません。

  • 3) OAuth : OpenID と同じですが、ユーザーのプライベート リソースにもアクセスできます。ここに同じ問題があります。ブラウザはキーとトークンを交換するために開く必要があるため、ユーザー エクスペリエンスがあまり良くありません。

  • 4) AccountManager : これは非常に良いオプションですが、アプリケーションの一部ではないため、私は好きではありません。ユーザーがログイン ボタンを押して AccountManager がポップアップしたときに何が起こるかさえわかりません。AccountManager に既にリストされている既存のアカウントを選択する必要がありますか、Yahoo などの別のアカウントを選択する場合はどうすればよいですか? AccountManager はそれを登録してログインし、認証済みのアプリケーションを返すことができますか?


私が使用できる 4 つの代替案すべての既存の実装をぜひお聞きしたいと思います。それらがたくさんあることは知っていますが、ここにリストしたくありません。唯一の問題は、どれを使用すればよいかわからないことです。これにより、希望どおりの作業が行われます。以下は私が欲しいもののリストです:

  • 1) アプリケーションで、ユーザーが [ログイン] ボタンをクリックすると、ユーザーが Google、Facebook、Yahoo、Twitter のいずれかを選択できるようにする必要があります。ユーザーは、認証済みとして記録されている任意のアカウントでログインする必要があります。

  • 2)そのアカウントは、サーバーに対して認証するためのアクセストークンとしてユーザーである必要があります。したがって、サーバーはトークンのみを受け入れ、それが有効であることを確認します。

これの要点は、サーバーにログインメカニズムを実装する必要がないということですが、ユーザーはサーバーに対してまだ認証されているため、データなどを交換できます.

4

2 に答える 2

0
    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>
于 2015-11-24T12:32:47.747 に答える
-1
    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>
于 2015-11-24T11:13:43.137 に答える