mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 09:39:25 +03:00
shareWithMe is shown in the file list
This commit is contained in:
parent
7623a8af61
commit
0e95ee3e67
1 changed files with 8 additions and 9 deletions
|
@ -268,17 +268,16 @@ public class FileListListAdapter extends BaseAdapter implements ListAdapter {
|
|||
}
|
||||
|
||||
// share with me icon
|
||||
if (!file.isFolder()) {
|
||||
ImageView sharedWithMeIconV = (ImageView)
|
||||
view.findViewById(R.id.sharedWithMeIcon);
|
||||
sharedWithMeIconV.bringToFront();
|
||||
if (checkIfFileIsSharedWithMe(file)) {
|
||||
sharedWithMeIconV.setVisibility(View.VISIBLE);
|
||||
} else {
|
||||
sharedWithMeIconV.setVisibility(View.GONE);
|
||||
}
|
||||
ImageView sharedWithMeIconV = (ImageView)
|
||||
view.findViewById(R.id.sharedWithMeIcon);
|
||||
sharedWithMeIconV.bringToFront();
|
||||
if (checkIfFileIsSharedWithMe(file)) {
|
||||
sharedWithMeIconV.setVisibility(View.VISIBLE);
|
||||
} else {
|
||||
sharedWithMeIconV.setVisibility(View.GONE);
|
||||
}
|
||||
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue