게시물이 없을 때 Write 버튼이 눌리지 않는 버그 수정
versionCode 15, versionName 1.3.1
This commit is contained in:
@@ -693,6 +693,14 @@ class UserProfileActivity : BaseActivity<ActivityUserProfileBinding>(
|
||||
if (userId == SharedPreferenceManager.userId) {
|
||||
binding.layoutCreatorCommunityPost.root.visibility = View.VISIBLE
|
||||
binding.layoutCreatorCommunityPost.llNoPost.visibility = View.VISIBLE
|
||||
binding.layoutCreatorCommunityPost.llNoPost.setOnClickListener {
|
||||
startActivity(
|
||||
Intent(
|
||||
applicationContext,
|
||||
CreatorCommunityWriteActivity::class.java
|
||||
)
|
||||
)
|
||||
}
|
||||
} else {
|
||||
binding.layoutCreatorCommunityPost.root.visibility = View.GONE
|
||||
}
|
||||
|
Reference in New Issue
Block a user