mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 02:37:16 +00:00
Unfinished business
This commit is contained in:
parent
fa9199801e
commit
bb816da2fe
1 changed files with 8 additions and 1 deletions
|
@ -19,6 +19,7 @@ package eu.faircode.email;
|
||||||
Copyright 2018 by Marcel Bokhorst (M66B)
|
Copyright 2018 by Marcel Bokhorst (M66B)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import android.content.Intent;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
|
@ -67,9 +68,15 @@ public class FragmentFolders extends FragmentEx {
|
||||||
fab.setOnClickListener(new View.OnClickListener() {
|
fab.setOnClickListener(new View.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(View view) {
|
public void onClick(View view) {
|
||||||
|
Bundle args = getArguments();
|
||||||
|
long account = (args == null ? -1 : args.getLong("account"));
|
||||||
|
|
||||||
|
startActivity(new Intent(getContext(), ActivityCompose.class)
|
||||||
|
.putExtra("action", "new")
|
||||||
|
.putExtra("account", account)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
fab.setVisibility(View.GONE);
|
|
||||||
|
|
||||||
// Initialize
|
// Initialize
|
||||||
grpReady.setVisibility(View.GONE);
|
grpReady.setVisibility(View.GONE);
|
||||||
|
|
Loading…
Reference in a new issue