请参阅以下代码,apply_job值可能为true或false
<Button
android:id="@+id/apply_job"
android:layout_width="match_parent"
android:text="Apply"
android:background="@color/colorPrimary"
android:layout_height="wrap_content" />
答案 0 :(得分:1)
在Kotlin中,如果使用kotlin扩展,则不必初始化变量。
确保您已在模块 build.gradle
中添加此插件apply plugin: 'kotlin-android-extensions'
管理可见性
val canShow = true
apply_job.visibility = if(canShow) View.VISIBLE else View.GONE