게시물이 없을 때 Write 버튼이 눌리지 않는 버그 수정
versionCode 15, versionName 1.3.1
This commit is contained in:
parent
7d9fc13192
commit
5d3891c1db
|
@ -40,8 +40,8 @@ android {
|
||||||
applicationId "kr.co.vividnext.sodalive"
|
applicationId "kr.co.vividnext.sodalive"
|
||||||
minSdk 23
|
minSdk 23
|
||||||
targetSdk 33
|
targetSdk 33
|
||||||
versionCode 14
|
versionCode 15
|
||||||
versionName "1.3.0"
|
versionName "1.3.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
|
|
@ -693,6 +693,14 @@ class UserProfileActivity : BaseActivity<ActivityUserProfileBinding>(
|
||||||
if (userId == SharedPreferenceManager.userId) {
|
if (userId == SharedPreferenceManager.userId) {
|
||||||
binding.layoutCreatorCommunityPost.root.visibility = View.VISIBLE
|
binding.layoutCreatorCommunityPost.root.visibility = View.VISIBLE
|
||||||
binding.layoutCreatorCommunityPost.llNoPost.visibility = View.VISIBLE
|
binding.layoutCreatorCommunityPost.llNoPost.visibility = View.VISIBLE
|
||||||
|
binding.layoutCreatorCommunityPost.llNoPost.setOnClickListener {
|
||||||
|
startActivity(
|
||||||
|
Intent(
|
||||||
|
applicationContext,
|
||||||
|
CreatorCommunityWriteActivity::class.java
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
binding.layoutCreatorCommunityPost.root.visibility = View.GONE
|
binding.layoutCreatorCommunityPost.root.visibility = View.GONE
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue