SOS Emergency app is developed for protecting lives of people in any emergency situations. In case of any unsafe situation, just TAP the SOS button to raise an emergency SOS alert to the trusted contacts saved in the application. The SOS alert will be in the form of SMS informing that you are unsafe and need help.
0
stars
1
forks
source link
[#Issue1]: Content obscured behind the Bottom Navigation Bar #8
While working on your code within fragments, you may come across an issue related to content being obscured behind the bottom navigation bar. I'm actively addressing this problem.
The solution idea is straightforward, I aim to set a height limit in the activity_bootstrap.xml file. This will allow you to proceed with your measurements and layouts without worrying about the height constraints.
Fixed the issue, I've just added android:layout_marginBottom="?actionBarSize" to the fragment tag inside activity_bootstrap.xml in order to set a height limit. check this commit 914ef1c
While working on your code within fragments, you may come across an issue related to content being obscured behind the bottom navigation bar. I'm actively addressing this problem.
The solution idea is straightforward, I aim to set a height limit in the activity_bootstrap.xml file. This will allow you to proceed with your measurements and layouts without worrying about the height constraints.