14 lines
252 B
Java
14 lines
252 B
Java
|
|
package com.chaoran.entiry;
|
||
|
|
|
||
|
|
import android.content.Context;
|
||
|
|
import android.widget.Button;
|
||
|
|
|
||
|
|
public class SelfButton extends Button {
|
||
|
|
public String clickFun;
|
||
|
|
public String nextFocus;
|
||
|
|
public SelfButton(Context context) {
|
||
|
|
super(context);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|