• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package js.kbars;
2 
3 import android.content.Context;
4 import android.view.View;
5 import android.view.View.OnClickListener;
6 import android.widget.Button;
7 
8 public class IdentifyBarsButton extends Button {
IdentifyBarsButton(Context context)9     public IdentifyBarsButton(Context context) {
10         super(context);
11         setText("Identify system bars");
12         setOnClickListener(new OnClickListener() {
13             public void onClick(View v) {
14                 IdentifyBarsButton.this.identifyBars();
15             }
16         });
17     }
18 
identifyBars()19     private void identifyBars() {
20     }
21 }
22