mansonheart
mansonheart
I need show progressbar in parent fragment in case if child fragment has needed state (for example count elements in `ListView`). To solve the problem it is necessary that the...
In the [blogpost](https://proandroiddev.com/unidirectional-data-flow-on-android-the-blog-post-part-1-cadcf88c72f5) you’ve considered unidirectional data flow (UDF) architecture in the Clean architecture (CA) context. Thank you for this point! I’ve a question about СA layers and UDF. In...
What is happened if I'll remove `@syncronized`? I’ve considered two options. Method `handle()` will execute on the `storeThread` or same thread. Between lines of the code `actions.offer(action)` and `handle(actions.poll())` it's...
For example, **instead** ``` ``` Use ``` ``` and commit fragment, for example by button click ``` TestFragment testFragment = (TestFragment) getSupportFragmentManager() .findFragmentById(R.id.bottom_sheet_content); FragmentTransaction transaction = getSupportFragmentManager() .beginTransaction() .replace(R.id.bottom_sheet_content, TestFragment.newInstance());...
**MapKit version** 3.3.1 **Issue** MapKit requests location when the application is running background. I'm following the [docs recommendations](https://tech.yandex.ru/maps/doc/mapkit/3.x/concepts/android/quickstart-docpage/): ``` @Override protected void onStop() { super.onStop(); mapview.onStop(); MapKitFactory.getInstance().onStop(); } @Override protected...