-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[UI/#51] 설정 뷰 / UI 구현 #65
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아주조하요~
private lateinit var quitDialog: SettingQuitDialogFragment | ||
private lateinit var logoutDialog: SettingLogoutDialogFragment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nullable한 dialog로 초기값 null로 설정해서 전역변수를 생성한 뒤, 생성할때만 실제 객체를 연결해주고, onDestroy때 dissmiss() 해준다면 메모리 누수를 더 방지할 수 있습니다~~
제 투두생성 시 바텀시트 올리는 코드 참고해보시면 좋을듯 !
private fun initAboutDoorip() { | ||
binding.btnSettingAboutDooripEnter.setOnSingleClickListener { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
요친구만 네이밍이 달라요 ~
<TextView | ||
android:id="@+id/btn_setting_service_version_enter" | ||
style="@style/TextAppearance.Doorip.Detail1.Regular" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginEnd="16dp" | ||
android:textColor="@color/gray_300" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintTop_toTopOf="parent" | ||
tools:text="v1.0" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
요친구 buildSrc의 version에 있는 1.0 을 활용해서 나중에 버전 업할때 대응 가능하도록 적용시켜주세요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
굿 좋네요~~~ 커스텀 다이얼로그 하느라 수고하셧슴니👍👍👍👍👍👍👍다
WindowManager.LayoutParams.MATCH_PARENT, | ||
WindowManager.LayoutParams.MATCH_PARENT, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
요 아이때문에 다이얼로그가 화면 꽉 차게 안나와서 애먹은게 새록새록하네요 ㅎ.ㅎ
WindowManager.LayoutParams.MATCH_PARENT, | ||
WindowManager.LayoutParams.MATCH_PARENT, | ||
) | ||
setBackgroundDrawableResource(R.color.transparent_60) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
뒤에 배경 굿 좋습니다~~
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
너무 잘해서 이런거밖에 달게 없어요~ 아주 굿이에요~
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="https://schemas.android.com/apk/res/android" | ||
android:shape="rectangle"> | ||
<solid android:color="@color/white_000" /> | ||
<corners android:radius="2dp" /> | ||
</shape> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
네이밍 참고해주세용~~~~~~~ rect_2입니다 우하하
⛳️ Work Description
📸 Screenshot
device-2024-01-10-202953.mp4
📢 To Reviewers