You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi~
We are engaged in the work of data loss detection, and we have manually confirmed some data loss issues.
However, there exist a data loss issue that we cannot confirm, and the issue detail is:
The affected UI is com.knirirr.beecount.CountOptionsActivity, and the affected widget is the variable count_mult_widget of OptionsWidget type.
when we try to reproduce the data loss issue by rotate the phone, what confuses us is that we cannot find this widget on UI. The appearance of it may depend on pref_multiplier in onResume(). Because we may not familiar with the app, so , could you give some advice about how to let count_mult_widget appear on the UI? Thanks a lot.
source code excerpt from onResume().
if (pref_multiplier)
{
count_mult_widget = new OptionsWidget(this, null);
count_mult_widget.setInstructions(getString(R.string.countMult));
count_mult_widget.setParameterValue(count.multiplier);
static_widget_area.addView(count_mult_widget);
}
The text was updated successfully, but these errors were encountered:
Hi~
We are engaged in the work of data loss detection, and we have manually confirmed some data loss issues.
However, there exist a data loss issue that we cannot confirm, and the issue detail is:
The affected UI is com.knirirr.beecount.CountOptionsActivity, and the affected widget is the variable count_mult_widget of
OptionsWidget
type.when we try to reproduce the data loss issue by rotate the phone, what confuses us is that we cannot find this widget on UI. The appearance of it may depend on
pref_multiplier
inonResume()
. Because we may not familiar with the app, so , could you give some advice about how to let count_mult_widget appear on the UI? Thanks a lot.source code excerpt from
onResume()
.The text was updated successfully, but these errors were encountered: