Skip to content

Commit dfcc632

Browse files
A1Z1J1WCA1Z1J1WC
authored andcommitted
library
0 parents  commit dfcc632

File tree

77 files changed

+1895
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+1895
-0
lines changed

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
/.idea/navEditor.xml
9+
/.idea/assetWizardSettings.xml
10+
.DS_Store
11+
/build
12+
/captures
13+
.externalNativeBuild

.idea/codeStyles/Project.xml

Lines changed: 119 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# BackStack_BottomNavigation (Managing Backstack with the help of Stack)
2+
3+
[![API](https://img.shields.io/badge/API-15%2B-red.svg)](https://android-arsenal.com/api?level=15) [![Android Arsenal]( https://img.shields.io/badge/Android%20Arsenal-BottomNavigation-green.svg?style=flat )]( https://android-arsenal.com/details/1/7815 ) [![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/fold_left.svg?style=social&label=Follow%20%40elite_novice)](https://twitter.com/elite_novice) [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity) [![Ask Me Anything !](https://img.shields.io/badge/Ask%20me-anything-1abc9c.svg)](https://GitHub.com/Naereen/ama) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) [![ForTheBadge built-with-love](http://ForTheBadge.com/images/badges/built-with-love.svg)](https://GitHub.com/Naereen/)
4+
5+
## How this is helpful for you?
6+
This example demonstrates how to keeps a history of previous tabs so that when the current tab's stack is exhausted the system back button will navigate to the previously selected tab.
7+
If you want to switch between fragments with botttomnavigation view, without losing fragments state and along with if you want to maintain backstack of fragments. Then this example is for you.
8+
9+
10+
**Note:-This example handles backstack and even app restores when after killed by Android System, all backstacks are preserved.
11+
12+
13+
If you want to say thanks or want to share how much you like my efforts, then you can share it with me with [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/GitEliteNovice)
14+
15+
16+
17+
![Webp net-resizeimage](https://user-images.githubusercontent.com/15318984/62406658-e6b3a700-b5cc-11e9-9d5e-d1938099aa12.png) ![Webp net-resizeimage (1)](https://user-images.githubusercontent.com/15318984/62406685-224e7100-b5cd-11e9-80d9-0984a98b9455.png) ![Webp net-resizeimage (2)](https://user-images.githubusercontent.com/15318984/62406707-8d984300-b5cd-11e9-98d9-175e87ee3122.png)
18+
19+
20+
21+
### This example includes following things
22+
* Stack
23+
* BottomNavigationView
24+
* ArrayList
25+
* Fragment manager
26+
27+
<p align="center">
28+
<br>
29+
<b>Android Example to keeps a history of previous tabs </b>
30+
</p>
31+
<p align="center">
32+
Built with ❤︎ by <a href="https://medium.com/@EliteNovice">Aryan Dhankar</a>.
33+
</p>
34+
35+
36+
37+
Connect With Me
38+
-----------
39+
40+
Aryan Dhankar (Elite Novice)
41+
I love making new friends, please feel free to connect with me.
42+
43+
<a href="https://plus.google.com/u/0/+AryanDhankar">
44+
<img alt="Connect me on Google+" src="/art/gplus.png" />
45+
</a>
46+
<a href="https://www.facebook.com/aryan.dhankar.3">
47+
<img alt="Connect me on Facebook" src="/art/fb.png" width="64" height="64" />
48+
</a>
49+
<a href="https://www.linkedin.com/in/aryan-dhankar-961b50117/">
50+
<img alt="Connect me on LinkedIn" src="/art/linkedin.png" />
51+
</a>
52+
53+
54+
Question / Contact Me
55+
---------------------
56+
Please feel free to ping me at **[email protected]**.

app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

0 commit comments

Comments
 (0)