게시물이 없을 때 Write 버튼이 눌리지 않는 버그 수정

versionCode 15, versionName 1.3.1
This commit is contained in:
klaus 2023-12-25 20:06:51 +09:00
parent 7d9fc13192
commit 5d3891c1db
2 changed files with 10 additions and 2 deletions

View File

@ -40,8 +40,8 @@ android {
applicationId "kr.co.vividnext.sodalive"
minSdk 23
targetSdk 33
versionCode 14
versionName "1.3.0"
versionCode 15
versionName "1.3.1"
}
buildTypes {

View File

@ -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
}