標籤:android style blog class code ext
Android自訂按鈕實現長按功能
通過自訂BUTTON,寫一個LongTouchBtn類,在按下的時候執行onTouchEvent事件,通過這個事件使用回呼函數來實現長按功能!
XML:
<huahua.btnlongtouch.LongTouchBtn android:id="@+id/btn2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="自訂Btn" /> <TextView android:id="@+id/tv1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="0" />
activity:
public class MainActivity extends Activity {private TextView Tv1;private LongTouchBtn Btn1;private int num=0;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);Tv1 = (TextView)findViewById(R.id.tv1);Btn1 = (LongTouchBtn)findViewById(R.id.btn2);Btn1.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View arg0) {Log.i("huahua", "自訂按鈕處理單擊");}});Btn1.setOnLongClickListener(new View.OnLongClickListener() {@Overridepublic boolean onLongClick(View v) {Log.i("huahua", "自訂按鈕處理長按一次相應");return false;}});/** * 這是一個自訂的介面 專門負責處理長按邏輯 * @param listener * 監聽器。 * @param time * 第2個參數傳入1000 ,表示1秒處理一次onLongTouch()方法 */Btn1.setOnLongTouchListener(new LongTouchListener() {@Overridepublic void onLongTouch() {num++;Tv1.setText(num+"");Log.i("huahua", "正在長按");}},1000);}}
huahua.btnlongtouch.LongTouchBtn:
public class LongTouchBtn extends Button{/** * 記錄當前自訂Btn是否按下 */private boolean clickdown = false;/** * 下拉重新整理的回調介面 */private LongTouchListener mListener;/** * 按鈕長按時 間隔多少毫秒來處理 回調方法 */private int mtime;/** * 建構函式 * @param context * @param attrs */public LongTouchBtn(Context context, AttributeSet attrs) {super(context, attrs);// TODO Auto-generated constructor stub}/** * 處理touch事件 */@Overridepublic boolean onTouchEvent(MotionEvent event) {if(event.getAction() == MotionEvent.ACTION_DOWN){clickdown = true;new LongTouchTask().execute();Log.i("huahua", "按下");}else if(event.getAction() == MotionEvent.ACTION_UP){clickdown = false;Log.i("huahua", "彈起");}return super.onTouchEvent(event);}/** * 使當前線程睡眠指定的毫秒數。 * * @param time * 指定當前線程睡眠多久,以毫秒為單位 */private void sleep(int time) {try {Thread.sleep(time);} catch (InterruptedException e) {e.printStackTrace();}}/** * 處理長按的任務 */class LongTouchTask extends AsyncTask<Void, Integer, Void>{@Overrideprotected Void doInBackground(Void... params) {while(clickdown){sleep(mtime);publishProgress(0);}return null;}@Overrideprotected void onPostExecute(Void result) {}@Overrideprotected void onProgressUpdate(Integer... values) {mListener.onLongTouch();}}/** * 給長按btn控制項註冊一個監聽器。 * * @param listener * 監聽器的實現。 * @param time * 多少毫秒時間間隔 來處理一次回調方法 */public void setOnLongTouchListener(LongTouchListener listener, int time) {mListener = listener;mtime = time;}/** * 長按監聽介面,使用按鈕長按的地方應該註冊此監聽器來擷取回調。 */public interface LongTouchListener {/** * 處理長按的回調方法 */void onLongTouch();}}