aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/activity/IAbstractActivity.java
blob: 04709c672a406b9f812e1e9729486e7f804eb83b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cgeo.geocaching.activity;

import android.view.View;

public interface IAbstractActivity {

    public void goHome(View view);

    public void goManual(View view);

    public void showToast(String text);

    public void showShortToast(String text);

    public void helpDialog(String title, String message);

    public void invalidateOptionsMenuCompatible();
}