Android Adding headers to RecyclerView does not display all list items The Next CEO of Stack OverflowHow do I display an alert dialog on Android?How do I rotate the Android emulator display?How to add dividers and spaces between items in RecyclerView?Get visible items in RecyclerViewHow to implement endless list with RecyclerView?Saving ToggleButton state in ListView by using SharedPreferencesScrolling lagged after applying the typeface in the Recycler view itemsBest way RecyclerView change itemLayout of all items?android.content.res.Resources$NotFoundException: in setImageResourceMultiple Adapters or One Adapter for different lists and objects - Code Performance
How do I construct this japanese bowl?
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
How to Reset Passwords on Multiple Websites Easily?
Term for the "extreme-extension" version of a straw man fallacy?
Why Were Madagascar and New Zealand Discovered So Late?
How do scammers retract money, while you can’t?
Opposite of a diet
Anatomically Correct Mesopelagic Aves
Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?
How do I go from 300 unfinished/half written blog posts, to published posts?
What's the point of interval inversion?
Apart from "berlinern", do any other German dialects have a corresponding verb?
Explicit solution of a Hamiltonian system
Why didn't Theresa May consult with Parliament before negotiating a deal with the EU?
Is a stroke of luck acceptable after a series of unfavorable events?
How long to clear the 'suck zone' of a turbofan after start is initiated?
Inappropriate reference requests from Journal reviewers
Visit to the USA with ESTA approved before trip to Iran
How to safely derail a train during transit?
Why is Miller's case titled R (Miller)?
If I blow insulation everywhere in my attic except the door trap, will heat escape through it?
Whats the best way to handle refactoring a big file?
What is the difference between "behavior" and "behaviour"?
How to be diplomatic in refusing to write code that breaches the privacy of our users
Android Adding headers to RecyclerView does not display all list items
The Next CEO of Stack OverflowHow do I display an alert dialog on Android?How do I rotate the Android emulator display?How to add dividers and spaces between items in RecyclerView?Get visible items in RecyclerViewHow to implement endless list with RecyclerView?Saving ToggleButton state in ListView by using SharedPreferencesScrolling lagged after applying the typeface in the Recycler view itemsBest way RecyclerView change itemLayout of all items?android.content.res.Resources$NotFoundException: in setImageResourceMultiple Adapters or One Adapter for different lists and objects - Code Performance
I am trying to add headers to columns of RecyclerView list. All list items are not getting displayed when I add headers. Please find the relevant code below:
@Override
public int getItemCount()
return (myList == null)? 0 : myList.size();
@Override
public int getItemViewType(int position)
if (myList.get(position) == null) return -1;
if (isPositionHeader(position))
return ItemType.HEADER.getTypeCode();
else
return ItemType.ITEM.getTypeCode();
private boolean isPositionHeader(int position)
return position == 0;
@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position)
if (holder instanceof myListViewHolder)
((myListViewHolder)
holder).bindData(myList.get(position-1));
else if (holder instanceof myHeaderViewHolder)
Log.d("RecyclerAdapter", "Setting Headers");
// Rest of the code
@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType)
LayoutInflater inflater = LayoutInflater.from(parent.getContext());
if (viewType == ItemType.ITEM.getTypeCode())
return new
myListViewHolder(inflater.inflate(R.layout.my_list_item, parent, false),
callback);
else if (viewType == ItemType.HEADER.getTypeCode())
return new
myHeaderViewHolder(inflater.inflate(R.layout.my_header_item, parent, false),
callback);
else
return new LoadViewHolder(inflater.inflate(R.layout.loading_view,
parent, false));
protected Profile getItemByPosition(int position)
return myList.get(position);
@Override
public long getItemId(int position)
if (getItemByPosition(position) == null) return -1;
return getItemByPosition(position).getId().hashCode();
With the above code, the headers are displayed at the zeroth position, next the list items are displayed leaving the last item i.e. if list has 5 elements, only 4 elements are getting displayed.
I have tried to return myList.size() +1 in getItemCount(), but this throws an IndexOutOfBounds exception.
Any help would be greatly appreciated.
Thanks
add a comment |
I am trying to add headers to columns of RecyclerView list. All list items are not getting displayed when I add headers. Please find the relevant code below:
@Override
public int getItemCount()
return (myList == null)? 0 : myList.size();
@Override
public int getItemViewType(int position)
if (myList.get(position) == null) return -1;
if (isPositionHeader(position))
return ItemType.HEADER.getTypeCode();
else
return ItemType.ITEM.getTypeCode();
private boolean isPositionHeader(int position)
return position == 0;
@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position)
if (holder instanceof myListViewHolder)
((myListViewHolder)
holder).bindData(myList.get(position-1));
else if (holder instanceof myHeaderViewHolder)
Log.d("RecyclerAdapter", "Setting Headers");
// Rest of the code
@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType)
LayoutInflater inflater = LayoutInflater.from(parent.getContext());
if (viewType == ItemType.ITEM.getTypeCode())
return new
myListViewHolder(inflater.inflate(R.layout.my_list_item, parent, false),
callback);
else if (viewType == ItemType.HEADER.getTypeCode())
return new
myHeaderViewHolder(inflater.inflate(R.layout.my_header_item, parent, false),
callback);
else
return new LoadViewHolder(inflater.inflate(R.layout.loading_view,
parent, false));
protected Profile getItemByPosition(int position)
return myList.get(position);
@Override
public long getItemId(int position)
if (getItemByPosition(position) == null) return -1;
return getItemByPosition(position).getId().hashCode();
With the above code, the headers are displayed at the zeroth position, next the list items are displayed leaving the last item i.e. if list has 5 elements, only 4 elements are getting displayed.
I have tried to return myList.size() +1 in getItemCount(), but this throws an IndexOutOfBounds exception.
Any help would be greatly appreciated.
Thanks
Can you post a screen shot?
– Kristy Welsh
Mar 8 at 13:16
add a comment |
I am trying to add headers to columns of RecyclerView list. All list items are not getting displayed when I add headers. Please find the relevant code below:
@Override
public int getItemCount()
return (myList == null)? 0 : myList.size();
@Override
public int getItemViewType(int position)
if (myList.get(position) == null) return -1;
if (isPositionHeader(position))
return ItemType.HEADER.getTypeCode();
else
return ItemType.ITEM.getTypeCode();
private boolean isPositionHeader(int position)
return position == 0;
@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position)
if (holder instanceof myListViewHolder)
((myListViewHolder)
holder).bindData(myList.get(position-1));
else if (holder instanceof myHeaderViewHolder)
Log.d("RecyclerAdapter", "Setting Headers");
// Rest of the code
@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType)
LayoutInflater inflater = LayoutInflater.from(parent.getContext());
if (viewType == ItemType.ITEM.getTypeCode())
return new
myListViewHolder(inflater.inflate(R.layout.my_list_item, parent, false),
callback);
else if (viewType == ItemType.HEADER.getTypeCode())
return new
myHeaderViewHolder(inflater.inflate(R.layout.my_header_item, parent, false),
callback);
else
return new LoadViewHolder(inflater.inflate(R.layout.loading_view,
parent, false));
protected Profile getItemByPosition(int position)
return myList.get(position);
@Override
public long getItemId(int position)
if (getItemByPosition(position) == null) return -1;
return getItemByPosition(position).getId().hashCode();
With the above code, the headers are displayed at the zeroth position, next the list items are displayed leaving the last item i.e. if list has 5 elements, only 4 elements are getting displayed.
I have tried to return myList.size() +1 in getItemCount(), but this throws an IndexOutOfBounds exception.
Any help would be greatly appreciated.
Thanks
I am trying to add headers to columns of RecyclerView list. All list items are not getting displayed when I add headers. Please find the relevant code below:
@Override
public int getItemCount()
return (myList == null)? 0 : myList.size();
@Override
public int getItemViewType(int position)
if (myList.get(position) == null) return -1;
if (isPositionHeader(position))
return ItemType.HEADER.getTypeCode();
else
return ItemType.ITEM.getTypeCode();
private boolean isPositionHeader(int position)
return position == 0;
@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position)
if (holder instanceof myListViewHolder)
((myListViewHolder)
holder).bindData(myList.get(position-1));
else if (holder instanceof myHeaderViewHolder)
Log.d("RecyclerAdapter", "Setting Headers");
// Rest of the code
@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType)
LayoutInflater inflater = LayoutInflater.from(parent.getContext());
if (viewType == ItemType.ITEM.getTypeCode())
return new
myListViewHolder(inflater.inflate(R.layout.my_list_item, parent, false),
callback);
else if (viewType == ItemType.HEADER.getTypeCode())
return new
myHeaderViewHolder(inflater.inflate(R.layout.my_header_item, parent, false),
callback);
else
return new LoadViewHolder(inflater.inflate(R.layout.loading_view,
parent, false));
protected Profile getItemByPosition(int position)
return myList.get(position);
@Override
public long getItemId(int position)
if (getItemByPosition(position) == null) return -1;
return getItemByPosition(position).getId().hashCode();
With the above code, the headers are displayed at the zeroth position, next the list items are displayed leaving the last item i.e. if list has 5 elements, only 4 elements are getting displayed.
I have tried to return myList.size() +1 in getItemCount(), but this throws an IndexOutOfBounds exception.
Any help would be greatly appreciated.
Thanks
edited Mar 9 at 17:31
Sri
asked Mar 8 at 12:46
SriSri
528
528
Can you post a screen shot?
– Kristy Welsh
Mar 8 at 13:16
add a comment |
Can you post a screen shot?
– Kristy Welsh
Mar 8 at 13:16
Can you post a screen shot?
– Kristy Welsh
Mar 8 at 13:16
Can you post a screen shot?
– Kristy Welsh
Mar 8 at 13:16
add a comment |
1 Answer
1
active
oldest
votes
I've noticed you've not implemented createViewHolder as seen in https://developer.android.com/reference/android/support/v7/widget/RecyclerView.Adapter.html#createViewHolder(android.view.ViewGroup,%20int). That helps RecyclerView determine whether to use the header or list item view holder.
It would seem that the getItemCount method is implemented incorrectly - it needs to be the number of headers + number of items.
Then fix the method like this:
@Override
public int getItemViewType(int position)
if (isPositionHeader(position))
return ItemType.HEADER.getTypeCode();
else
if(myList.get(position - 1) == null)
return -1;
else
return ItemType.ITEM.getTypeCode();
I forgot to add onCreateViewHolder in the post, have edited it. When I return myList.size() + 1 from getItemsCount(), it throws IndexOutOfBoundsException and app crashes.
– Sri
Mar 8 at 13:39
I think the line of code that's the culprit is if (myList.get(position) == null) return -1; If you have 5 items meaning 1 header and 4 items, and your getItemCount is returning 5, myList.get(4) will be called, and there's no such element, only 0 to 3.
– Pamela Hill
Mar 8 at 13:45
My list has 6 elements and with header the total item count is 7. I removed the line if (myList.get(position) == null) return -1;. Also tried if(myList.get(position - 1) == null) return -1; that you mentioned in the above code. But it still does not display the last element in the list.
– Sri
Mar 8 at 18:44
Have you updated your getItemCount method to be myList's length + 1? Are any of the items in the list null?
– Pamela Hill
Mar 9 at 5:56
No null items in the list. Yes, I have tried returning myList.size() + 1. It throws java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 from method getItemByPosition() . I know this is because of the header row at position 0. But how do I handle this exception?
– Sri
Mar 9 at 17:37
|
show 1 more comment
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%2f55063539%2fandroid-adding-headers-to-recyclerview-does-not-display-all-list-items%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've noticed you've not implemented createViewHolder as seen in https://developer.android.com/reference/android/support/v7/widget/RecyclerView.Adapter.html#createViewHolder(android.view.ViewGroup,%20int). That helps RecyclerView determine whether to use the header or list item view holder.
It would seem that the getItemCount method is implemented incorrectly - it needs to be the number of headers + number of items.
Then fix the method like this:
@Override
public int getItemViewType(int position)
if (isPositionHeader(position))
return ItemType.HEADER.getTypeCode();
else
if(myList.get(position - 1) == null)
return -1;
else
return ItemType.ITEM.getTypeCode();
I forgot to add onCreateViewHolder in the post, have edited it. When I return myList.size() + 1 from getItemsCount(), it throws IndexOutOfBoundsException and app crashes.
– Sri
Mar 8 at 13:39
I think the line of code that's the culprit is if (myList.get(position) == null) return -1; If you have 5 items meaning 1 header and 4 items, and your getItemCount is returning 5, myList.get(4) will be called, and there's no such element, only 0 to 3.
– Pamela Hill
Mar 8 at 13:45
My list has 6 elements and with header the total item count is 7. I removed the line if (myList.get(position) == null) return -1;. Also tried if(myList.get(position - 1) == null) return -1; that you mentioned in the above code. But it still does not display the last element in the list.
– Sri
Mar 8 at 18:44
Have you updated your getItemCount method to be myList's length + 1? Are any of the items in the list null?
– Pamela Hill
Mar 9 at 5:56
No null items in the list. Yes, I have tried returning myList.size() + 1. It throws java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 from method getItemByPosition() . I know this is because of the header row at position 0. But how do I handle this exception?
– Sri
Mar 9 at 17:37
|
show 1 more comment
I've noticed you've not implemented createViewHolder as seen in https://developer.android.com/reference/android/support/v7/widget/RecyclerView.Adapter.html#createViewHolder(android.view.ViewGroup,%20int). That helps RecyclerView determine whether to use the header or list item view holder.
It would seem that the getItemCount method is implemented incorrectly - it needs to be the number of headers + number of items.
Then fix the method like this:
@Override
public int getItemViewType(int position)
if (isPositionHeader(position))
return ItemType.HEADER.getTypeCode();
else
if(myList.get(position - 1) == null)
return -1;
else
return ItemType.ITEM.getTypeCode();
I forgot to add onCreateViewHolder in the post, have edited it. When I return myList.size() + 1 from getItemsCount(), it throws IndexOutOfBoundsException and app crashes.
– Sri
Mar 8 at 13:39
I think the line of code that's the culprit is if (myList.get(position) == null) return -1; If you have 5 items meaning 1 header and 4 items, and your getItemCount is returning 5, myList.get(4) will be called, and there's no such element, only 0 to 3.
– Pamela Hill
Mar 8 at 13:45
My list has 6 elements and with header the total item count is 7. I removed the line if (myList.get(position) == null) return -1;. Also tried if(myList.get(position - 1) == null) return -1; that you mentioned in the above code. But it still does not display the last element in the list.
– Sri
Mar 8 at 18:44
Have you updated your getItemCount method to be myList's length + 1? Are any of the items in the list null?
– Pamela Hill
Mar 9 at 5:56
No null items in the list. Yes, I have tried returning myList.size() + 1. It throws java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 from method getItemByPosition() . I know this is because of the header row at position 0. But how do I handle this exception?
– Sri
Mar 9 at 17:37
|
show 1 more comment
I've noticed you've not implemented createViewHolder as seen in https://developer.android.com/reference/android/support/v7/widget/RecyclerView.Adapter.html#createViewHolder(android.view.ViewGroup,%20int). That helps RecyclerView determine whether to use the header or list item view holder.
It would seem that the getItemCount method is implemented incorrectly - it needs to be the number of headers + number of items.
Then fix the method like this:
@Override
public int getItemViewType(int position)
if (isPositionHeader(position))
return ItemType.HEADER.getTypeCode();
else
if(myList.get(position - 1) == null)
return -1;
else
return ItemType.ITEM.getTypeCode();
I've noticed you've not implemented createViewHolder as seen in https://developer.android.com/reference/android/support/v7/widget/RecyclerView.Adapter.html#createViewHolder(android.view.ViewGroup,%20int). That helps RecyclerView determine whether to use the header or list item view holder.
It would seem that the getItemCount method is implemented incorrectly - it needs to be the number of headers + number of items.
Then fix the method like this:
@Override
public int getItemViewType(int position)
if (isPositionHeader(position))
return ItemType.HEADER.getTypeCode();
else
if(myList.get(position - 1) == null)
return -1;
else
return ItemType.ITEM.getTypeCode();
edited Mar 8 at 13:56
answered Mar 8 at 13:32
Pamela HillPamela Hill
946
946
I forgot to add onCreateViewHolder in the post, have edited it. When I return myList.size() + 1 from getItemsCount(), it throws IndexOutOfBoundsException and app crashes.
– Sri
Mar 8 at 13:39
I think the line of code that's the culprit is if (myList.get(position) == null) return -1; If you have 5 items meaning 1 header and 4 items, and your getItemCount is returning 5, myList.get(4) will be called, and there's no such element, only 0 to 3.
– Pamela Hill
Mar 8 at 13:45
My list has 6 elements and with header the total item count is 7. I removed the line if (myList.get(position) == null) return -1;. Also tried if(myList.get(position - 1) == null) return -1; that you mentioned in the above code. But it still does not display the last element in the list.
– Sri
Mar 8 at 18:44
Have you updated your getItemCount method to be myList's length + 1? Are any of the items in the list null?
– Pamela Hill
Mar 9 at 5:56
No null items in the list. Yes, I have tried returning myList.size() + 1. It throws java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 from method getItemByPosition() . I know this is because of the header row at position 0. But how do I handle this exception?
– Sri
Mar 9 at 17:37
|
show 1 more comment
I forgot to add onCreateViewHolder in the post, have edited it. When I return myList.size() + 1 from getItemsCount(), it throws IndexOutOfBoundsException and app crashes.
– Sri
Mar 8 at 13:39
I think the line of code that's the culprit is if (myList.get(position) == null) return -1; If you have 5 items meaning 1 header and 4 items, and your getItemCount is returning 5, myList.get(4) will be called, and there's no such element, only 0 to 3.
– Pamela Hill
Mar 8 at 13:45
My list has 6 elements and with header the total item count is 7. I removed the line if (myList.get(position) == null) return -1;. Also tried if(myList.get(position - 1) == null) return -1; that you mentioned in the above code. But it still does not display the last element in the list.
– Sri
Mar 8 at 18:44
Have you updated your getItemCount method to be myList's length + 1? Are any of the items in the list null?
– Pamela Hill
Mar 9 at 5:56
No null items in the list. Yes, I have tried returning myList.size() + 1. It throws java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 from method getItemByPosition() . I know this is because of the header row at position 0. But how do I handle this exception?
– Sri
Mar 9 at 17:37
I forgot to add onCreateViewHolder in the post, have edited it. When I return myList.size() + 1 from getItemsCount(), it throws IndexOutOfBoundsException and app crashes.
– Sri
Mar 8 at 13:39
I forgot to add onCreateViewHolder in the post, have edited it. When I return myList.size() + 1 from getItemsCount(), it throws IndexOutOfBoundsException and app crashes.
– Sri
Mar 8 at 13:39
I think the line of code that's the culprit is if (myList.get(position) == null) return -1; If you have 5 items meaning 1 header and 4 items, and your getItemCount is returning 5, myList.get(4) will be called, and there's no such element, only 0 to 3.
– Pamela Hill
Mar 8 at 13:45
I think the line of code that's the culprit is if (myList.get(position) == null) return -1; If you have 5 items meaning 1 header and 4 items, and your getItemCount is returning 5, myList.get(4) will be called, and there's no such element, only 0 to 3.
– Pamela Hill
Mar 8 at 13:45
My list has 6 elements and with header the total item count is 7. I removed the line if (myList.get(position) == null) return -1;. Also tried if(myList.get(position - 1) == null) return -1; that you mentioned in the above code. But it still does not display the last element in the list.
– Sri
Mar 8 at 18:44
My list has 6 elements and with header the total item count is 7. I removed the line if (myList.get(position) == null) return -1;. Also tried if(myList.get(position - 1) == null) return -1; that you mentioned in the above code. But it still does not display the last element in the list.
– Sri
Mar 8 at 18:44
Have you updated your getItemCount method to be myList's length + 1? Are any of the items in the list null?
– Pamela Hill
Mar 9 at 5:56
Have you updated your getItemCount method to be myList's length + 1? Are any of the items in the list null?
– Pamela Hill
Mar 9 at 5:56
No null items in the list. Yes, I have tried returning myList.size() + 1. It throws java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 from method getItemByPosition() . I know this is because of the header row at position 0. But how do I handle this exception?
– Sri
Mar 9 at 17:37
No null items in the list. Yes, I have tried returning myList.size() + 1. It throws java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 from method getItemByPosition() . I know this is because of the header row at position 0. But how do I handle this exception?
– Sri
Mar 9 at 17:37
|
show 1 more comment
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%2f55063539%2fandroid-adding-headers-to-recyclerview-does-not-display-all-list-items%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 post a screen shot?
– Kristy Welsh
Mar 8 at 13:16