|
|
@ -129,6 +129,7 @@ public class FragmentPop extends FragmentBase {
|
|
|
|
private ContentLoadingProgressBar pbWait;
|
|
|
|
private ContentLoadingProgressBar pbWait;
|
|
|
|
|
|
|
|
|
|
|
|
private long id = -1;
|
|
|
|
private long id = -1;
|
|
|
|
|
|
|
|
private long copy = -1;
|
|
|
|
private int auth = AUTH_TYPE_PASSWORD;
|
|
|
|
private int auth = AUTH_TYPE_PASSWORD;
|
|
|
|
private String avatar = null;
|
|
|
|
private String avatar = null;
|
|
|
|
private String calendar = null;
|
|
|
|
private String calendar = null;
|
|
|
@ -146,6 +147,9 @@ public class FragmentPop extends FragmentBase {
|
|
|
|
|
|
|
|
|
|
|
|
// Get arguments
|
|
|
|
// Get arguments
|
|
|
|
Bundle args = getArguments();
|
|
|
|
Bundle args = getArguments();
|
|
|
|
|
|
|
|
if (args.getBoolean("copy"))
|
|
|
|
|
|
|
|
copy = args.getLong("id", -1);
|
|
|
|
|
|
|
|
else
|
|
|
|
id = args.getLong("id", -1);
|
|
|
|
id = args.getLong("id", -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -872,7 +876,7 @@ public class FragmentPop extends FragmentBase {
|
|
|
|
super.onActivityCreated(savedInstanceState);
|
|
|
|
super.onActivityCreated(savedInstanceState);
|
|
|
|
|
|
|
|
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
Bundle args = new Bundle();
|
|
|
|
args.putLong("id", id);
|
|
|
|
args.putLong("id", copy < 0 ? id : copy);
|
|
|
|
|
|
|
|
|
|
|
|
new SimpleTask<EntityAccount>() {
|
|
|
|
new SimpleTask<EntityAccount>() {
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|