1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-07-14 07:53:10 +00:00
2017-09-03 13:57:12 -03:00

14 lines
293 B
Java

package org.schabi.newpipe.fragments;
/**
* Indicates that the current fragment can handle back presses
*/
public interface BackPressable {
/**
* A back press was delegated to this fragment
*
* @return if the back press was handled
*/
boolean onBackPressed();
}