Browse Source

add some docs

main
Distopico Vegan 6 years ago
parent
commit
29283ed320
2 changed files with 11 additions and 0 deletions
  1. +5
    -0
      app/src/main/java/org/dystopia/email/ActivityView.java
  2. +6
    -0
      app/src/main/java/org/dystopia/email/FragmentMessages.java

+ 5
- 0
app/src/main/java/org/dystopia/email/ActivityView.java View File

@ -717,6 +717,11 @@ public class ActivityView extends ActivityBase
return intent;
}
/**
* Get Intent for invite to use SimpleEmail
*
* @return Intent with share/send action
*/
private Intent getIntentInvite() {
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);


+ 6
- 0
app/src/main/java/org/dystopia/email/FragmentMessages.java View File

@ -1046,6 +1046,12 @@ public class FragmentMessages extends FragmentEx {
}
}
/**
* Handler when OnRefreshListener is called
*
* @param args a <code>Bundle</code> with account and folder
*/
private void onRefreshHandler(Bundle args) {
new SimpleTask<Boolean>() {
@Override


Loading…
Cancel
Save