Toggle navigation
Toggle navigation
This project
Loading...
Sign in
장연우
/
WELLO
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
신기성
2019-11-11 01:59:14 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c9e02e1f4cc9d24571a36f63c1863ace2afd09ca
c9e02e1f
1 parent
e0c1d434
exception and profil link
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
vip/app/src/main/java/com/example/vip/InputProfilFirstTwoActivity.kt
vip/app/src/main/java/com/example/vip/InputProfilFourthOneActivity.kt
vip/app/src/main/java/com/example/vip/SignUpActivity.kt
vip/app/src/main/java/com/example/vip/InputProfilFirstTwoActivity.kt
View file @
c9e02e1
...
...
@@ -26,7 +26,14 @@ class InputProfilFirstTwoActivity : AppCompatActivity() {
var
birthdateinput
=
findViewById
<
EditText
>(
R
.
id
.
editText
).
text
.
toString
()
var
birthdateint
=
birthdateinput
.
toInt
()
var
birthdateint
=
0
if
(
birthdateinput
==
""
)
{
birthdateint
=
0
}
else
{
birthdateint
=
birthdateinput
.
toInt
()
}
if
((
2019
-
birthdateint
)<
19
){
editor
.
putInt
(
"c1_2"
,
1
)
editor
.
commit
()
...
...
vip/app/src/main/java/com/example/vip/InputProfilFourthOneActivity.kt
View file @
c9e02e1
...
...
@@ -101,7 +101,7 @@ class InputProfilFourthOneActivity : AppCompatActivity() {
editor
.
putInt
(
"c7_31"
,
1
)
editor
.
commit
()
}
var
intent
=
Intent
(
this
,
InputProfilF
irst
TwoActivity
::
class
.
java
)
var
intent
=
Intent
(
this
,
InputProfilF
ourth
TwoActivity
::
class
.
java
)
startActivity
(
intent
)
}
}
...
...
vip/app/src/main/java/com/example/vip/SignUpActivity.kt
View file @
c9e02e1
...
...
@@ -81,7 +81,7 @@ class SignUpActivity : AppCompatActivity() {
cnt
++
if
(
user
!=
null
){
var
intent
=
Intent
(
this
,
Main
Activity
::
class
.
java
)
var
intent
=
Intent
(
this
,
InputProfilFirstOne
Activity
::
class
.
java
)
startActivity
(
intent
)
}
}
else
{
...
...
Please
register
or
login
to post a comment