-
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/#45] MyTodo / 생성화면 UI 구현 #52
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.
아 그는 데바"도" 마스터네요
갓상호 멋진 코드 읽고 갑니다
따봉 👍👍👍👍👍👍👍👍👍👍
app/src/main/AndroidManifest.xml
Outdated
@@ -54,7 +54,7 @@ | |||
|
|||
<activity | |||
android:name="com.going.presentation.todo.TodoActivity" | |||
android:exported="false" | |||
android:exported="true" |
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.
pr 올릴 때 true 말고 false 부탁드립니다~!
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 fun initFinishBtnClickListener() { | ||
binding.btnCreateTripFinish.setOnSingleClickListener { | ||
viewModel.endDate.value = | ||
binding.dpCreateTripDate.year.toString() + "." + (binding.dpCreateTripDate.month + 1).toString() + "." + binding.dpCreateTripDate.dayOfMonth.toString() | ||
viewModel.checkIsFinishAvailable() | ||
dismiss() |
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.
너무 깔꼼하네요 좋습니다아
|
||
</androidx.constraintlayout.widget.ConstraintLayout> | ||
|
||
</ScrollView> |
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.
저도 스크롤뷰 기억티비할게요!
@@ -3,7 +3,7 @@ | |||
|
|||
<style name="TextAppearance.Doorip" parent=""> | |||
<item name="android:textStyle">normal</item> | |||
<item name="android:textColor">@color/black_000</item> | |||
<item name="android:textColor">@color/gray_700</item> |
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.
ㅎㅎ
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.
완벽하십니다,, 다음에도 눈 키고 찾아볼게요 ㅎㅅㅎ
<item name="android:textStyle">normal</item> | ||
<item name="android:textColor">@color/black_000</item> | ||
<item name="android:textColor">@color/gray_700</item> | ||
<item name="android:textAllCaps">false</item> |
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.
센스쟁이~!
android:paddingVertical="10dp" | ||
android:text="@string/my_todo_create_btn_finish" | ||
android:textColor="@{vm.isFinishAvailable() == true ? @color/white_000 : @color/gray_200}" | ||
android:textSize="16sp" |
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.
Nod bad.
app/src/main/AndroidManifest.xml
Outdated
@@ -54,7 +54,7 @@ | |||
|
|||
<activity | |||
android:name="com.going.presentation.todo.TodoActivity" | |||
android:exported="false" | |||
android:exported="true" |
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.
세연이가 화가 많이 났습니다...
false로 바꿔서 올려주세용...
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.
ㅠㅠ혼났어요
viewModel.endDate.value = | ||
binding.dpCreateTripDate.year.toString() + "." + (binding.dpCreateTripDate.month + 1).toString() + "." + binding.dpCreateTripDate.dayOfMonth.toString() | ||
viewModel.checkIsFinishAvailable() |
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.
string 리소스 내부 변수를 활용해서 나타낸다면 더 좋을 것 같아요~
string 리소스를 "%1d.%2d.%3d"이렇게 두고 해당 값들을 변수로 넣으면 좋을 것 같네용!
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.
귀차나요
⛳️ Work Description
📸 Screenshot
KakaoTalk_Video_2024-01-09-23-39-47.mp4
📢 To Reviewers