Skip to content

Commit

Permalink
회원가입 구상중
Browse files Browse the repository at this point in the history
  • Loading branch information
surcae committed Jun 4, 2018
1 parent 82152ce commit 320fe5f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import android.app.FragmentManager;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.support.annotation.NonNull;
import android.support.v4.app.FragmentActivity;
import android.support.v7.app.AppCompatActivity;
Expand Down Expand Up @@ -87,6 +86,12 @@ public void onClick(View v) {
//startActivityForResult(signInIntent, RC_SIGN_IN);
//Intent signInIntent = Auth.GoogleSignInApi.getSignInIntent(FireBaseClass.getInstance().getmGoogleApiClient());
//startActivityForResult(signInIntent, SIGN_IN);
// 빈 공간 검사 (하나라도 비었으면 안 만들어짐)
if (email.getText().equals(""))
return;

if (password.getText().equals(""))
return;
}
});

Expand All @@ -110,12 +115,6 @@ public void onClick(View v) {
}

private void CreateUser() {
// 빈 공간 검사 (하나라도 비었으면 안 만들어짐)
if (email.getText().equals(""))
return;

if (password.getText().equals(""))
return;

// 이 부분은 따로 구현
// 프래그먼트 변경
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.example.surcae_laptop.pictoria;

import android.app.Activity;

public class Signup extends Activity {
// 싸인업 액티비티
}

0 comments on commit 320fe5f

Please sign in to comment.