Skip to content

Commit

Permalink
Merge pull request #216 from nowwater/feature-issue147-bookmarkview
Browse files Browse the repository at this point in the history
profile name update
  • Loading branch information
o-star authored Jun 2, 2021
2 parents ee6affa + 8cc605d commit 1bd4a1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class FriendlistFragment(var userId : Int) : Fragment() {

AppDatabase.getInstance(context!!).userDao().getLiveData(userId).observe(this){ user ->
user.profileImageUrl?.let { Glide.with(this).load(it).into(my_image) }
my_name.setText(user.nickName)
my_name.setText(user.name)
my_status_msg.setText(user.statusMessage) // 상태메세지 항목없어서 임의로 시현때 보여주려고 암거나 넣음

// my profile 액티비티 실행
Expand Down

0 comments on commit 1bd4a1c

Please sign in to comment.