mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2026-03-10 10:45:04 +00:00
Changed share indication on list page
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user