Когда android:animateLayoutChanges
для моего макета включено, и я изменяю видимость группы на GONE
и возвращаю его на VISIBLE
, альфа TextView сбрасывается на 1
.
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:alpha="0.2"
android:padding="16dp"
android:text="TextView"
android:textAppearance="@style/TextAppearance.MaterialComponents.Body2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/button" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.constraintlayout.widget.Group
android:id="@+id/group"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:constraint_referenced_ids="textView"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
setSupportActionBar(toolbar)
button.setOnClickListener {
println(group.visibility)
group.visibility = if (group.visibility == View.VISIBLE) View.GONE else View.VISIBLE
}
}
}
пс. Я также пытаюсь установить видимость TextView напрямую, и возникает та же проблема:
textView.visibility = if (textView.visibility == View.VISIBLE) View.GONE else View.VISIBLE
Это ошибка?