made refresh work for non-root directories too
This commit is contained in:
parent
02b9e9932f
commit
ad7b051144
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@ package com.zeapo.pwdstore;
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.app.Fragment;
|
import android.app.Fragment;
|
||||||
|
import android.util.Log;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
|
@ -111,7 +112,7 @@ public class PasswordFragment extends Fragment implements AbsListView.OnItemClic
|
||||||
|
|
||||||
public void updateAdapter() {
|
public void updateAdapter() {
|
||||||
mAdapter.clear();
|
mAdapter.clear();
|
||||||
mAdapter.addAll(PasswordRepository.getPasswords());
|
mAdapter.addAll(PasswordRepository.getPasswords(new File(getArguments().getString("Path"))));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue