Объяснение:
-
Я начинаю операцию В с переходом активности из действия А.
-
После запуска нового действия B я изменяю состояния видимости некоторых видов (
View.GONE
) в B.
Проблема заключается в следующем:
При запуске нового действия C и возвращении к активности B (или принудительной onPause в B), представления с измененными состояниями видимости появляются снова, без каких-либо прикосновений к представлениям по коду или другим.
Следующее видео объясняет проблему на снимках: https://youtu.be/oqCZo5CSkQk
При отсутствии перехода все работает так, как ожидалось. У кого-нибудь есть идея, как предотвратить потерю зрения представления при возобновлении Activity? Я неправильно использую ActivityOptionsCompat
?
Я использую библиотеки поддержки:
'com.android.support:support-v4:27.1.1'
и 'com.android.support:appcompat-v7:27.1.1'
Но проблема также возникает для более старых версий и для разных производителей телефонов (Pixel, Samsung и т.д.).
Вот код для воспроизведения проблем:
Макеты
Деятельность A:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical">
<TextView
style="@style/TextAppearance.AppCompat.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="24dp"
android:gravity="center"
android:text="Activity A | this starts the transition to another activity"/>
<android.support.v7.widget.AppCompatImageView
android:id="@+id/imageToAnimate"
android:layout_width="20dp"
android:layout_height="20dp"
app:srcCompat="@android:drawable/star_big_on"/>
<Button
android:id="@+id/start_next_activity"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:text="start Another Activity"/>
</LinearLayout>
Активность B:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<TextView
style="@style/TextAppearance.AppCompat.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="24dp"
android:gravity="center"
android:text="Activity B | with progressbar"/>
<android.support.v7.widget.AppCompatImageView
android:id="@+id/imageToAnimate"
android:layout_width="100dp"
android:layout_height="100dp"
android:transitionName="toAnimate"
app:srcCompat="@android:drawable/star_big_on"/>
<ProgressBar
android:id="@+id/progress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:visibility="gone"/>
<TextView
android:id="@+id/dismiss_text"
style="@style/TextAppearance.AppCompat.Subhead"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="24dp"
android:text="Also a text to dismiss"/>
<Button
android:id="@+id/show"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SHOW"/>
<Button
android:id="@+id/hide_gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SET GONE"/>
<Button
android:id="@+id/hide_invisible"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SET INVISIBLE"/>
<Button
android:id="@+id/start_activity_c"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="START activity"/>
</LinearLayout>
Деятельность C:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<TextView
style="@style/TextAppearance.AppCompat.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Activity C"
android:textSize="40sp"/>
</LinearLayout>
Исходный код операции
Деятельность A:
public class DebugActivityA extends AppCompatActivity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_a);
findViewById(R.id.start_next_activity).setOnClickListener(v -> startWithTransition());
}
private void startWithTransition() {
ActivityOptionsCompat options = ActivityOptionsCompat
.makeSceneTransitionAnimation(DebugActivityA.this,
findViewById(R.id.imageToAnimate),
"toAnimate");
startActivity(new Intent(DebugActivityA.this, DebugActivityB.class), options.toBundle());
}
}
Активность B:
public class DebugActivityB extends AppCompatActivity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_b);
View progressbar = findViewById(R.id.progress);
View dismissText = findViewById(R.id.dismiss_text);
progressbar.setVisibility(View.VISIBLE);
findViewById(R.id.show).setOnClickListener(v -> {
progressbar.setVisibility(View.VISIBLE);
dismissText.setVisibility(View.VISIBLE);
});
findViewById(R.id.hide_gone).setOnClickListener(v -> {
progressbar.setVisibility(View.GONE);
dismissText.setVisibility(View.GONE);
});
findViewById(R.id.hide_invisible).setOnClickListener(v -> {
progressbar.setVisibility(View.INVISIBLE);
dismissText.setVisibility(View.INVISIBLE);
});
findViewById(R.id.start_activity_c).setOnClickListener(this::startOtherActivity);
}
private void startOtherActivity(View view) {
startActivity(new Intent(this, DebugActivityC.class));
}
}
Деятельность C:
public class DebugActivityC extends AppCompatActivity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_c);
}
}