aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/compatibility/AndroidLevel11.java
blob: 8398eb36af771eca117090af884298950d97e8dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cgeo.geocaching.compatibility;

import android.annotation.TargetApi;
import android.os.Build;
import android.widget.TextView;

@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public class AndroidLevel11 implements AndroidLevel11Interface {

    @Override
    public void setTextIsSelectable(final TextView textView, final boolean selectable) {
        textView.setTextIsSelectable(selectable);
    }

}