PixImagePicker icon indicating copy to clipboard operation
PixImagePicker copied to clipboard

After pressing the back on Android, the bottom bar is obscured

Open abdulahad1991 opened this issue 1 year ago • 5 comments

image

abdulahad1991 avatar Feb 12 '24 05:02 abdulahad1991

Hello @abdulahad1991 , can you provide more info, such as replication steps and how you have implemented Pix image picker. Also the image you have provided is not available any more, can you re upload it??

akshay2211 avatar Aug 05 '24 04:08 akshay2211

@akshay2211 hope you are doing great.

I could not recall the issue exactly my apologies :)

abdulahad1991 avatar Aug 05 '24 09:08 abdulahad1991

This issue is steel occurred BiP image 2024-11-27 pmt 13 58 25 BiP image 2024-11-27 pmt 13 58 33

halilibrahimaksoy avatar Nov 27 '24 10:11 halilibrahimaksoy

private fun showCameraPicker(pixFragment: PixFragment) {
    childFragmentManager.beginTransaction()
        .replace(
            R.id.fragmentContainer,
            pixFragment,
            Constants.PixFragmentTag
        )
        .addToBackStack(Constants.PixFragmentTag)
        .commit()
}

private fun dismissCameraPicker() {
    val fragment = childFragmentManager.findFragmentByTag(Constants.PixFragmentTag)
    if (fragment != null) {
        childFragmentManager.beginTransaction()
            .remove(fragment)
            .commit()
    }
}

This is how I implement adding and removing

halilibrahimaksoy avatar Nov 27 '24 11:11 halilibrahimaksoy

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

stale[bot] avatar Apr 26 '25 00:04 stale[bot]