use of com.keylesspalace.tusky.fragment.ComposeOptionsFragment in project Tusky by Vavassor.
the class ComposeActivity method showComposeOptions.
private void showComposeOptions() {
ComposeOptionsFragment fragment = ComposeOptionsFragment.newInstance(statusVisibility, statusHideText, inReplyToId != null);
fragment.show(getSupportFragmentManager(), null);
}
use of com.keylesspalace.tusky.fragment.ComposeOptionsFragment in project Tusky by tuskyapp.
the class ComposeActivity method showComposeOptions.
private void showComposeOptions() {
ComposeOptionsFragment fragment = ComposeOptionsFragment.newInstance(statusVisibility, statusHideText);
fragment.show(getSupportFragmentManager(), null);
}
Aggregations