mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-13 09:48:47 +00:00
Changed share indication on list page
This commit is contained in:
parent
283401370f
commit
5312bd3b8e
@ -94,10 +94,10 @@ public class ShoppingListsAdapter extends BaseAdapter implements Requestor.Recei
|
||||
@Override
|
||||
public void run() {
|
||||
if(sharee.getShareWithEmail().equals(am.getEmail(requestor))) {
|
||||
tvListName.setText(curList.getName() + " (sh. by me)");
|
||||
tvListName.setText(curList.getName() + " (shared)");
|
||||
}
|
||||
else {
|
||||
tvListName.setText(curList.getName() + " (sh. by " + sharee.getShareWithEmail() + ")");
|
||||
tvListName.setText(curList.getName() + " (" + sharee.getShareWithEmail() + ")");
|
||||
}
|
||||
|
||||
String listText = tvListName.getText().toString();
|
||||
|
||||
@ -61,10 +61,10 @@ public class ShoppingListsSwipeableAdapter extends BaseAdapter implements Reques
|
||||
@Override
|
||||
public void run() {
|
||||
if(sharee.getShareWithEmail().equals(am.getEmail(requestor))) {
|
||||
holder.listName.setText(curList.getName() + " (sh. by me)");
|
||||
holder.listName.setText(curList.getName() + " (shared)");
|
||||
}
|
||||
else {
|
||||
holder.listName.setText(curList.getName() + " (sh. by " + sharee.getShareWithEmail() + ")");
|
||||
holder.listName.setText(curList.getName() + " (" + sharee.getShareWithEmail() + ")");
|
||||
}
|
||||
|
||||
String listText = holder.listName.getText().toString();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user