Skip to content

Commit

Permalink
[ADD/#33] 회원가입 완료뷰 액티비티 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
Marchbreeze committed Jul 7, 2024
1 parent d539d39 commit 039c984
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,12 @@
android:name="co.orange.presentation.auth.signup.SignUpActivity"
android:exported="false"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize"/>
android:windowSoftInputMode="adjustResize" />

<activity
android:name="co.orange.presentation.auth.submit.SubmitActivity"
android:exported="false"
android:screenOrientation="portrait" />

</application>

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package co.orange.presentation.auth.submit

import android.os.Bundle
import dagger.hilt.android.AndroidEntryPoint
import kr.genti.core.base.BaseActivity
import kr.genti.core.extension.setOnSingleClickListener
import kr.genti.presentation.R
import kr.genti.presentation.databinding.ActivitySubmitBinding

@AndroidEntryPoint
class SubmitActivity : BaseActivity<ActivitySubmitBinding>(R.layout.activity_submit) {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)

initConfirmBtnListener()
getIntentUi()
}

private fun initConfirmBtnListener() {
binding.btnConfirm.setOnSingleClickListener {
finish()
}
}

private fun getIntentUi() {
binding.tvConfirmSubtitle.text = "행복한물개13123님"
}
}

0 comments on commit 039c984

Please sign in to comment.