-
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
Feature/divide_view #66
Conversation
…into feature/signView � Conflicts: � app/src/main/AndroidManifest.xml � app/src/main/res/layout/layout_main_header.xml � app/src/main/res/navigation/nav_graph.xml � app/src/main/res/values/strings.xml
@wjdwns |
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.
CI fail 확인 필요해보입니닷
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.databinding.BindingAdapter("app:signViewType") | ||
@JvmStatic | ||
fun signViewType(textView: TextView, signViewType:SignViewType){ | ||
when(signViewType){ | ||
SignViewType.UserName -> { | ||
textView.setText(R.string.sign_name_text) | ||
} | ||
SignViewType.GroupName -> { | ||
textView.setText(R.string.group_name_text) | ||
} | ||
SignViewType.InviteCode -> { | ||
textView.setText(R.string.invite_code_text) | ||
} | ||
SignViewType.ModifyGroupName -> { | ||
textView.setText(R.string.modify_group_name_text) | ||
} | ||
} | ||
} |
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 올립니다~!