Newer
Older
CosmosClient / app / src / main / java / com / example / cosmosclient / views / SigninActivity.java
k-morimoto on 15 Oct 2019 9 KB 通知表示テスト
package com.example.cosmosclient.views;

import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

import com.example.cosmosclient.R;
import com.example.cosmosclient.app.Cosmos;
import com.example.cosmosclient.entities.SigninResponse;
import com.example.cosmosclient.resources.UsersRest;

import retrofit2.Call;
import retrofit2.Callback;
import retrofit2.Response;
import retrofit2.Retrofit;
import retrofit2.converter.jackson.JacksonConverterFactory;

public class SigninActivity extends AppCompatActivity {
    private boolean uIdEnable;
    private boolean pwEnable;
    private Button SigninButton;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_signin);

        //各種IDを取得
        SigninButton = findViewById(R.id.SigninButton);
        Button SignupButton = findViewById(R.id.SignupButton);
        final EditText UserIdText = findViewById(R.id.UserIdText);
        final EditText PasswordText = findViewById(R.id.PasswordText);
        Button ForgotPasswordButton = findViewById(R.id.ForgotPasswordButton);

        // 「pref_data」という設定データファイルを読み込み
        SharedPreferences prefData = getSharedPreferences("pref_data", MODE_PRIVATE);
        String account = prefData.getString("account", "");

        // 空チェック
        if (account != null && account.length() > 0) {
            // 保存済の情報をログインID欄に設定
            UserIdText.setText(account);
            uIdEnable=true;
            //UserIdText.setEnabled(false);
        }

        //ボタン無効化
        SigninButton.setEnabled(false);

        //TextWatcherで入力監視
        UserIdText.addTextChangedListener(new SigninActivity.GenericTextWatcher(UserIdText));
        PasswordText.addTextChangedListener(new SigninActivity.GenericTextWatcher(PasswordText));


        //retrofitの処理
        final Retrofit retrofit = new Retrofit.Builder()
                .baseUrl("http://nitta-lab-www.is.konan-u.ac.jp/cosmos/")
                .addConverterFactory(JacksonConverterFactory.create())
                .build();
        //interfaceから実装を取得
        final UsersRest signinService = retrofit.create(UsersRest.class);

        //Sign inボタンの処理
        SigninButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //ボタン連打防止
                SigninButton.setEnabled(false);
                new Handler().postDelayed(new Runnable() {
                    public void run() {
                        SigninButton.setEnabled(true);
                    }
                }, 1000L);

                //APIに値を送信
                Call<SigninResponse> call = signinService.login(UserIdText.getText().toString(), PasswordText.getText().toString());

                //サーバからのレスポンス
                call.enqueue(new Callback<SigninResponse>() {
                    //成功時
                    @Override
                    public void onResponse(Call<SigninResponse> call, Response<SigninResponse> response) {
                        if (response.isSuccessful()) {
                            SigninResponse result = response.body();

                            //app/Cosmosに情報保存
                            Cosmos app = (Cosmos)getApplication();
                            app.setToken(result.token);
                            app.setuId(UserIdText.getText().toString());

                            //画面遷移
                            Intent intent = new Intent(getApplication(), GroupListActivity.class);
                            startActivity(intent);
                            Toast.makeText(SigninActivity.this,
                                    "ログインしました", Toast.LENGTH_SHORT).show();

                            //通知オブジェクトの用意と初期化
                            Notification notification = null;

                            //システムから通知マネージャー取得
                            NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
                            //アプリ名をチャンネルIDとして利用
                            String chID = getString(R.string.app_name);

                            //アンドロイドのバージョンで振り分け
                            if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {     //APIが「26」以上の場合

                                //通知チャンネルIDを生成してインスタンス化
                                NotificationChannel notificationChannel = new NotificationChannel(chID, chID, NotificationManager.IMPORTANCE_DEFAULT);
                                //通知の説明のセット
                                notificationChannel.setDescription(chID);
                                //通知チャンネルの作成
                                notificationManager.createNotificationChannel(notificationChannel);
                                //通知の生成と設定とビルド
                                notification = new Notification.Builder(SigninActivity.this, chID)
                                        .setContentTitle(getString(R.string.app_name))  //通知タイトル
                                        .setContentText("通知確認")        //通知内容
                                        .setSmallIcon(R.drawable.default_icon_image)                  //通知用アイコン
                                        .build();                                       //通知のビルド
                            } else {
                                //APIが「25」以下の場合
                                //通知の生成と設定とビルド
//                                notification = new Notification.Builder(SigninActivity.this)
//                                        .setContentTitle(getString(R.string.app_name))
//                                        .setContentText("アプリ通知テスト25まで")
//                                        .setSmallIcon(R.drawable.default_icon_image)
//                                        .build();
                            }
                            //通知の発行
                            notificationManager.notify(1, notification);
                            finish();

                        }else{
                            //onFailureでキャッチできないエラーの処理
                            Toast.makeText(SigninActivity.this,
                                    "通信エラー",Toast.LENGTH_SHORT).show();
                        }
                    }

                    //失敗時
                    @Override
                    public void onFailure(Call<SigninResponse> call, Throwable t) {
                        //t.printStackTrace();
                        Toast.makeText(SigninActivity.this,
                                "ユーザIDもしくはパスワードが間違っています",Toast.LENGTH_SHORT).show();
                    }

                });
            }
        });

        //サインアップ画面への遷移処理
        SignupButton.setOnClickListener(new View.OnClickListener(){
            @Override
            public void onClick(View v){
                Intent intent = new Intent(getApplication(), SignupActivity.class);
                startActivity(intent);
                finish();
            }
        });

        //パスワード再登録画面への遷移処理
        ForgotPasswordButton.setOnClickListener(new View.OnClickListener(){
            @Override
            public void onClick(View v){
                Intent intent = new Intent(getApplication(), ForgotPasswordActivity.class);
                startActivity(intent);
                //finish();
            }
        });
    }
    private class GenericTextWatcher implements TextWatcher{
        private View view;

        private GenericTextWatcher(View view){
            this.view = view;
        }

        @Override
        public  void beforeTextChanged(CharSequence s, int start, int count,int after){
            /*記述不要*/
        };
        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count){/*記述不要*/};

        @Override
        public void afterTextChanged(Editable s){
            switch(view.getId()) {
                case R.id.UserIdText:
                    if (s.length()>0) {
                        uIdEnable = true;
                    } else {
                        uIdEnable = false;
                    }
                    break;
                case R.id.PasswordText:
                    if(s.length()>0){
                        pwEnable=true;
                    }else{
                        pwEnable=false;
                    }
                    break;
            }
            //ボタン有効&無効
            if(uIdEnable && pwEnable){
                SigninButton.setEnabled(true);
            }else{
                SigninButton.setEnabled(false);
            }
        }
    }
}