aboutsummaryrefslogtreecommitdiff
path: root/KBars/app/src/main/java/js/kbars/IdentifyBarsButton.java
blob: 18223d0682e0d512ba85a6fb0657ca01e7362efb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package js.kbars;

import android.content.Context;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class IdentifyBarsButton extends Button {
    public IdentifyBarsButton(Context context) {
        super(context);
        setText("Identify system bars");
        setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                IdentifyBarsButton.this.identifyBars();
            }
        });
    }

    private void identifyBars() {
    }
}