Marcel Hibbe

Results 478 comments of Marcel Hibbe

@andyxheli it's not on 15.0.2 RC1 it will be in 15.1.0 so currently it's only available in the alpha (="nightly") builds

this will be solved when there is a better solution for ``` android:launchMode="singleInstance" android:noHistory="true" ``` see https://github.com/nextcloud/talk-android/pull/3008#issuecomment-1542232274

Okay lesson learned after the RC3 release: Default activity transistions seems to be different between manufacturers (or maybe Android Version?). On my Samsung (android 13) transistions are always from bottom...

i guess it might be best to define custom transitions like here: https://developer.android.com/develop/ui/views/animations/transitions/start-activity#custom-trans and maybe some stuff like `requestFeature` only has to be defined for BaseActivity..

and i guess ``` override fun onBackPressed() { val intent = Intent(this, ConversationsListActivity::class.java) intent.putExtras(Bundle()) startActivity(intent) } ``` in ChatActivity could have an impact on the transitions. Iirc i introduced this...

> @mahibi I think you could peek the back stack and decide to act according to it, launching an activity or just doing a back pressed. i like that idea...

Thanks for your interest to work on this @Smarshal21 Some first thoughts on this: A good first step will be to familiarize with the package "shareditems" (SharedItemsRepositoryImpl, ...) to learn...

question from @Smarshal21 in chat: how to access user and roomToken in FullScreenImageActivity in order to initialise repositoryParameters which helps in loading the media or images

> question from @Smarshal21 in chat: > > how to access user and roomToken in FullScreenImageActivity in order to initialise repositoryParameters which helps in loading the media or images -...