Based on String Array item, show same item to next fragmentSend data from activity to fragment in Androidpassing arrays using bundle in androidHow to initialize all members of an array to the same value?How do you convert a byte array to a hexadecimal string, and vice versa?How to insert an item into an array at a specific index (JavaScript)?Sort array of objects by string property valueHow to merge two arrays in JavaScript and de-duplicate itemsGet the last item in an arrayHow to remove item from array by value?Copy array items into another arrayConvert ArrayList<String> to String[] arrayLoop through an array of strings in Bash?
Why limit to revolvers?
Was adding milk to tea started to reduce employee tea break time?
When did the Roman Empire fall according to contemporaries?
Is purchasing foreign currency before going abroad a losing proposition?
Find the wrong number in the given series: 6, 12, 21, 36, 56, 81?
What is the German equivalent of 干物女 (dried fish woman)?
How does one stock fund's charge of 1% more in operating expenses than another fund lower expected returns by 10%?
Why doesn't the Lars family (and thus Luke) speak Huttese as their first language?
Can I intentionally omit previous work experience or pretend it doesn't exist when applying for jobs?
Why do they not say "The Baby"
Construct a pentagon avoiding compass use
How to determine port and starboard on a rotating wheel space station?
Back to the nineties!
Why does the autopilot disengage even when it does not receive pilot input?
QGIS Linestring rendering curves between vertex
What's the point of this scene involving Flash Thompson at the airport?
Are villager price increases due to killing them temporary?
Do native speakers use ZVE or CPU?
What does "Fotze" really mean?
I quit, and boss offered me 3 month "grace period" where I could still come back
Why does Hellboy file down his horns?
How to check the quality of an audio sample?
Why exactly was Star Wars: Clone Wars (2003) excluded from Disney Canon?
Is this floating-point optimization allowed?
Based on String Array item, show same item to next fragment
Send data from activity to fragment in Androidpassing arrays using bundle in androidHow to initialize all members of an array to the same value?How do you convert a byte array to a hexadecimal string, and vice versa?How to insert an item into an array at a specific index (JavaScript)?Sort array of objects by string property valueHow to merge two arrays in JavaScript and de-duplicate itemsGet the last item in an arrayHow to remove item from array by value?Copy array items into another arrayConvert ArrayList<String> to String[] arrayLoop through an array of strings in Bash?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have two fragments ListNav and SwipeNav in Navigation Drawer. ListNav shows list view of data from String array. SwipeNav shows data as swipe views of the same data from string array. I am able to replace fragment from ListNav to SwipeNav. String array data shows 'A to Z'.
My problem is when I click on list in ListNav (Suppose B)then SwipeNav(replaced Fragment) shows swipe views from start(means A). Suppose, if I click on 'D' in ListNav through Fragment replace, SwipeNav will show 'D'. Plz suggest me how I will implement this.
String Array:
<string-array name="tab_titles">
<item>A</item>
<item>B</item>
<item>C</item>
<item>D</item>
<item>E</item>
<item>F</item>
<item>G</item>
<item>H</item>
<item>I</item>
........
</string-array>
I ListNav I use below to replace to SwipeNav with OnItemClickListener:
FragmentManager fm=getFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
ft.replace(((ViewGroup)(getView().getParent())).getId(), new SwipeNav());
ft.addToBackStack(null);
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
ft.commit();
SwipeNav shows Data as Swipe Views through PagerAdapter from String Array:
tabTitlesArray = context.getResources().getStringArray(R.array.tab_titles);
android arrays android-fragments
|
show 1 more comment
I have two fragments ListNav and SwipeNav in Navigation Drawer. ListNav shows list view of data from String array. SwipeNav shows data as swipe views of the same data from string array. I am able to replace fragment from ListNav to SwipeNav. String array data shows 'A to Z'.
My problem is when I click on list in ListNav (Suppose B)then SwipeNav(replaced Fragment) shows swipe views from start(means A). Suppose, if I click on 'D' in ListNav through Fragment replace, SwipeNav will show 'D'. Plz suggest me how I will implement this.
String Array:
<string-array name="tab_titles">
<item>A</item>
<item>B</item>
<item>C</item>
<item>D</item>
<item>E</item>
<item>F</item>
<item>G</item>
<item>H</item>
<item>I</item>
........
</string-array>
I ListNav I use below to replace to SwipeNav with OnItemClickListener:
FragmentManager fm=getFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
ft.replace(((ViewGroup)(getView().getParent())).getId(), new SwipeNav());
ft.addToBackStack(null);
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
ft.commit();
SwipeNav shows Data as Swipe Views through PagerAdapter from String Array:
tabTitlesArray = context.getResources().getStringArray(R.array.tab_titles);
android arrays android-fragments
can you explain more clearly.
– Sandeep Insan
Mar 26 at 6:05
How about pass data using Bundle?
– iroiroys
Mar 26 at 6:05
@iroiroys I am not passing data. I am only replacing fragments. both ListNav and SwipeNav shows data from String array.
– achal naskar
Mar 26 at 6:08
You mean at this time you just replace them, right? When the first(ListNav) indicates 'B', then the second(SwipeNav) shows 'B'?
– iroiroys
Mar 26 at 6:15
@iroiroys ListNav shows as list all items from A to Z. If I click on B the SwipeNav will show as a swipe views B. same as If I click on F then it will show F. SwipeNav shows A, B, C,D as swipe views per page. Same item from String array to next fragment.
– achal naskar
Mar 26 at 6:21
|
show 1 more comment
I have two fragments ListNav and SwipeNav in Navigation Drawer. ListNav shows list view of data from String array. SwipeNav shows data as swipe views of the same data from string array. I am able to replace fragment from ListNav to SwipeNav. String array data shows 'A to Z'.
My problem is when I click on list in ListNav (Suppose B)then SwipeNav(replaced Fragment) shows swipe views from start(means A). Suppose, if I click on 'D' in ListNav through Fragment replace, SwipeNav will show 'D'. Plz suggest me how I will implement this.
String Array:
<string-array name="tab_titles">
<item>A</item>
<item>B</item>
<item>C</item>
<item>D</item>
<item>E</item>
<item>F</item>
<item>G</item>
<item>H</item>
<item>I</item>
........
</string-array>
I ListNav I use below to replace to SwipeNav with OnItemClickListener:
FragmentManager fm=getFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
ft.replace(((ViewGroup)(getView().getParent())).getId(), new SwipeNav());
ft.addToBackStack(null);
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
ft.commit();
SwipeNav shows Data as Swipe Views through PagerAdapter from String Array:
tabTitlesArray = context.getResources().getStringArray(R.array.tab_titles);
android arrays android-fragments
I have two fragments ListNav and SwipeNav in Navigation Drawer. ListNav shows list view of data from String array. SwipeNav shows data as swipe views of the same data from string array. I am able to replace fragment from ListNav to SwipeNav. String array data shows 'A to Z'.
My problem is when I click on list in ListNav (Suppose B)then SwipeNav(replaced Fragment) shows swipe views from start(means A). Suppose, if I click on 'D' in ListNav through Fragment replace, SwipeNav will show 'D'. Plz suggest me how I will implement this.
String Array:
<string-array name="tab_titles">
<item>A</item>
<item>B</item>
<item>C</item>
<item>D</item>
<item>E</item>
<item>F</item>
<item>G</item>
<item>H</item>
<item>I</item>
........
</string-array>
I ListNav I use below to replace to SwipeNav with OnItemClickListener:
FragmentManager fm=getFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
ft.replace(((ViewGroup)(getView().getParent())).getId(), new SwipeNav());
ft.addToBackStack(null);
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
ft.commit();
SwipeNav shows Data as Swipe Views through PagerAdapter from String Array:
tabTitlesArray = context.getResources().getStringArray(R.array.tab_titles);
android arrays android-fragments
android arrays android-fragments
asked Mar 26 at 5:55
achal naskarachal naskar
5163 silver badges14 bronze badges
5163 silver badges14 bronze badges
can you explain more clearly.
– Sandeep Insan
Mar 26 at 6:05
How about pass data using Bundle?
– iroiroys
Mar 26 at 6:05
@iroiroys I am not passing data. I am only replacing fragments. both ListNav and SwipeNav shows data from String array.
– achal naskar
Mar 26 at 6:08
You mean at this time you just replace them, right? When the first(ListNav) indicates 'B', then the second(SwipeNav) shows 'B'?
– iroiroys
Mar 26 at 6:15
@iroiroys ListNav shows as list all items from A to Z. If I click on B the SwipeNav will show as a swipe views B. same as If I click on F then it will show F. SwipeNav shows A, B, C,D as swipe views per page. Same item from String array to next fragment.
– achal naskar
Mar 26 at 6:21
|
show 1 more comment
can you explain more clearly.
– Sandeep Insan
Mar 26 at 6:05
How about pass data using Bundle?
– iroiroys
Mar 26 at 6:05
@iroiroys I am not passing data. I am only replacing fragments. both ListNav and SwipeNav shows data from String array.
– achal naskar
Mar 26 at 6:08
You mean at this time you just replace them, right? When the first(ListNav) indicates 'B', then the second(SwipeNav) shows 'B'?
– iroiroys
Mar 26 at 6:15
@iroiroys ListNav shows as list all items from A to Z. If I click on B the SwipeNav will show as a swipe views B. same as If I click on F then it will show F. SwipeNav shows A, B, C,D as swipe views per page. Same item from String array to next fragment.
– achal naskar
Mar 26 at 6:21
can you explain more clearly.
– Sandeep Insan
Mar 26 at 6:05
can you explain more clearly.
– Sandeep Insan
Mar 26 at 6:05
How about pass data using Bundle?
– iroiroys
Mar 26 at 6:05
How about pass data using Bundle?
– iroiroys
Mar 26 at 6:05
@iroiroys I am not passing data. I am only replacing fragments. both ListNav and SwipeNav shows data from String array.
– achal naskar
Mar 26 at 6:08
@iroiroys I am not passing data. I am only replacing fragments. both ListNav and SwipeNav shows data from String array.
– achal naskar
Mar 26 at 6:08
You mean at this time you just replace them, right? When the first(ListNav) indicates 'B', then the second(SwipeNav) shows 'B'?
– iroiroys
Mar 26 at 6:15
You mean at this time you just replace them, right? When the first(ListNav) indicates 'B', then the second(SwipeNav) shows 'B'?
– iroiroys
Mar 26 at 6:15
@iroiroys ListNav shows as list all items from A to Z. If I click on B the SwipeNav will show as a swipe views B. same as If I click on F then it will show F. SwipeNav shows A, B, C,D as swipe views per page. Same item from String array to next fragment.
– achal naskar
Mar 26 at 6:21
@iroiroys ListNav shows as list all items from A to Z. If I click on B the SwipeNav will show as a swipe views B. same as If I click on F then it will show F. SwipeNav shows A, B, C,D as swipe views per page. Same item from String array to next fragment.
– achal naskar
Mar 26 at 6:21
|
show 1 more comment
1 Answer
1
active
oldest
votes
I thing you are missing one step there and that is you need to send data in String form when swipe fragment is replacing .
Like.
Bundle bundle = new Bundle();
bundle.putString("TAG", "D");
// set Fragmentclass Arguments
SwipeNav fragobj = new SwipeNav();
fragobj.setArguments(bundle);
FragmentManager fm=getFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
ft.replace(((ViewGroup)(getView().getParent())).getId(), fragobj);
ft.addToBackStack(null);
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
ft.commit();
now on your swipe fragment make sure you are receiving that string that you are passing when creating .
so in onCreateView
method .
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
String passingString = getArguments().getString("TAG");
return inflater.inflate(R.layout.fragment, container, false);
Here TAG just identifying what you are passing .
When I am using the code, shows error: Caused by: java.lang.NullPointerException at ....SwipeNav.onCreateView(SwipeNav.java:23) Line is : String passingString = getArguments().getString("TAG");
– achal naskar
Mar 26 at 6:43
Will I have to connect passingString to the layout in SwipeNav?
– achal naskar
Mar 26 at 6:53
Thanks. Now no error issues. But String not passing. When I click F it shows A or when click D it also shows A. Same problem as before
– achal naskar
Mar 26 at 7:03
thanks for your support but i think there is something missing to understand your question please explain clearly . so we can further try to resolve your issue .
– Talha Bilal
Mar 26 at 9:17
I think you should see this link stackoverflow.com/questions/12739909/… .
– Talha Bilal
Mar 26 at 9:19
|
show 3 more comments
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55350646%2fbased-on-string-array-item-show-same-item-to-next-fragment%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I thing you are missing one step there and that is you need to send data in String form when swipe fragment is replacing .
Like.
Bundle bundle = new Bundle();
bundle.putString("TAG", "D");
// set Fragmentclass Arguments
SwipeNav fragobj = new SwipeNav();
fragobj.setArguments(bundle);
FragmentManager fm=getFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
ft.replace(((ViewGroup)(getView().getParent())).getId(), fragobj);
ft.addToBackStack(null);
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
ft.commit();
now on your swipe fragment make sure you are receiving that string that you are passing when creating .
so in onCreateView
method .
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
String passingString = getArguments().getString("TAG");
return inflater.inflate(R.layout.fragment, container, false);
Here TAG just identifying what you are passing .
When I am using the code, shows error: Caused by: java.lang.NullPointerException at ....SwipeNav.onCreateView(SwipeNav.java:23) Line is : String passingString = getArguments().getString("TAG");
– achal naskar
Mar 26 at 6:43
Will I have to connect passingString to the layout in SwipeNav?
– achal naskar
Mar 26 at 6:53
Thanks. Now no error issues. But String not passing. When I click F it shows A or when click D it also shows A. Same problem as before
– achal naskar
Mar 26 at 7:03
thanks for your support but i think there is something missing to understand your question please explain clearly . so we can further try to resolve your issue .
– Talha Bilal
Mar 26 at 9:17
I think you should see this link stackoverflow.com/questions/12739909/… .
– Talha Bilal
Mar 26 at 9:19
|
show 3 more comments
I thing you are missing one step there and that is you need to send data in String form when swipe fragment is replacing .
Like.
Bundle bundle = new Bundle();
bundle.putString("TAG", "D");
// set Fragmentclass Arguments
SwipeNav fragobj = new SwipeNav();
fragobj.setArguments(bundle);
FragmentManager fm=getFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
ft.replace(((ViewGroup)(getView().getParent())).getId(), fragobj);
ft.addToBackStack(null);
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
ft.commit();
now on your swipe fragment make sure you are receiving that string that you are passing when creating .
so in onCreateView
method .
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
String passingString = getArguments().getString("TAG");
return inflater.inflate(R.layout.fragment, container, false);
Here TAG just identifying what you are passing .
When I am using the code, shows error: Caused by: java.lang.NullPointerException at ....SwipeNav.onCreateView(SwipeNav.java:23) Line is : String passingString = getArguments().getString("TAG");
– achal naskar
Mar 26 at 6:43
Will I have to connect passingString to the layout in SwipeNav?
– achal naskar
Mar 26 at 6:53
Thanks. Now no error issues. But String not passing. When I click F it shows A or when click D it also shows A. Same problem as before
– achal naskar
Mar 26 at 7:03
thanks for your support but i think there is something missing to understand your question please explain clearly . so we can further try to resolve your issue .
– Talha Bilal
Mar 26 at 9:17
I think you should see this link stackoverflow.com/questions/12739909/… .
– Talha Bilal
Mar 26 at 9:19
|
show 3 more comments
I thing you are missing one step there and that is you need to send data in String form when swipe fragment is replacing .
Like.
Bundle bundle = new Bundle();
bundle.putString("TAG", "D");
// set Fragmentclass Arguments
SwipeNav fragobj = new SwipeNav();
fragobj.setArguments(bundle);
FragmentManager fm=getFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
ft.replace(((ViewGroup)(getView().getParent())).getId(), fragobj);
ft.addToBackStack(null);
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
ft.commit();
now on your swipe fragment make sure you are receiving that string that you are passing when creating .
so in onCreateView
method .
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
String passingString = getArguments().getString("TAG");
return inflater.inflate(R.layout.fragment, container, false);
Here TAG just identifying what you are passing .
I thing you are missing one step there and that is you need to send data in String form when swipe fragment is replacing .
Like.
Bundle bundle = new Bundle();
bundle.putString("TAG", "D");
// set Fragmentclass Arguments
SwipeNav fragobj = new SwipeNav();
fragobj.setArguments(bundle);
FragmentManager fm=getFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
ft.replace(((ViewGroup)(getView().getParent())).getId(), fragobj);
ft.addToBackStack(null);
ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
ft.commit();
now on your swipe fragment make sure you are receiving that string that you are passing when creating .
so in onCreateView
method .
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
String passingString = getArguments().getString("TAG");
return inflater.inflate(R.layout.fragment, container, false);
Here TAG just identifying what you are passing .
answered Mar 26 at 6:22
Talha BilalTalha Bilal
1147 bronze badges
1147 bronze badges
When I am using the code, shows error: Caused by: java.lang.NullPointerException at ....SwipeNav.onCreateView(SwipeNav.java:23) Line is : String passingString = getArguments().getString("TAG");
– achal naskar
Mar 26 at 6:43
Will I have to connect passingString to the layout in SwipeNav?
– achal naskar
Mar 26 at 6:53
Thanks. Now no error issues. But String not passing. When I click F it shows A or when click D it also shows A. Same problem as before
– achal naskar
Mar 26 at 7:03
thanks for your support but i think there is something missing to understand your question please explain clearly . so we can further try to resolve your issue .
– Talha Bilal
Mar 26 at 9:17
I think you should see this link stackoverflow.com/questions/12739909/… .
– Talha Bilal
Mar 26 at 9:19
|
show 3 more comments
When I am using the code, shows error: Caused by: java.lang.NullPointerException at ....SwipeNav.onCreateView(SwipeNav.java:23) Line is : String passingString = getArguments().getString("TAG");
– achal naskar
Mar 26 at 6:43
Will I have to connect passingString to the layout in SwipeNav?
– achal naskar
Mar 26 at 6:53
Thanks. Now no error issues. But String not passing. When I click F it shows A or when click D it also shows A. Same problem as before
– achal naskar
Mar 26 at 7:03
thanks for your support but i think there is something missing to understand your question please explain clearly . so we can further try to resolve your issue .
– Talha Bilal
Mar 26 at 9:17
I think you should see this link stackoverflow.com/questions/12739909/… .
– Talha Bilal
Mar 26 at 9:19
When I am using the code, shows error: Caused by: java.lang.NullPointerException at ....SwipeNav.onCreateView(SwipeNav.java:23) Line is : String passingString = getArguments().getString("TAG");
– achal naskar
Mar 26 at 6:43
When I am using the code, shows error: Caused by: java.lang.NullPointerException at ....SwipeNav.onCreateView(SwipeNav.java:23) Line is : String passingString = getArguments().getString("TAG");
– achal naskar
Mar 26 at 6:43
Will I have to connect passingString to the layout in SwipeNav?
– achal naskar
Mar 26 at 6:53
Will I have to connect passingString to the layout in SwipeNav?
– achal naskar
Mar 26 at 6:53
Thanks. Now no error issues. But String not passing. When I click F it shows A or when click D it also shows A. Same problem as before
– achal naskar
Mar 26 at 7:03
Thanks. Now no error issues. But String not passing. When I click F it shows A or when click D it also shows A. Same problem as before
– achal naskar
Mar 26 at 7:03
thanks for your support but i think there is something missing to understand your question please explain clearly . so we can further try to resolve your issue .
– Talha Bilal
Mar 26 at 9:17
thanks for your support but i think there is something missing to understand your question please explain clearly . so we can further try to resolve your issue .
– Talha Bilal
Mar 26 at 9:17
I think you should see this link stackoverflow.com/questions/12739909/… .
– Talha Bilal
Mar 26 at 9:19
I think you should see this link stackoverflow.com/questions/12739909/… .
– Talha Bilal
Mar 26 at 9:19
|
show 3 more comments
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55350646%2fbased-on-string-array-item-show-same-item-to-next-fragment%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
can you explain more clearly.
– Sandeep Insan
Mar 26 at 6:05
How about pass data using Bundle?
– iroiroys
Mar 26 at 6:05
@iroiroys I am not passing data. I am only replacing fragments. both ListNav and SwipeNav shows data from String array.
– achal naskar
Mar 26 at 6:08
You mean at this time you just replace them, right? When the first(ListNav) indicates 'B', then the second(SwipeNav) shows 'B'?
– iroiroys
Mar 26 at 6:15
@iroiroys ListNav shows as list all items from A to Z. If I click on B the SwipeNav will show as a swipe views B. same as If I click on F then it will show F. SwipeNav shows A, B, C,D as swipe views per page. Same item from String array to next fragment.
– achal naskar
Mar 26 at 6:21