Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Learning Android

Avatar for Denix Denix
September 14, 2017

Learning Android

CMRDB Android 讀書會, 2014 Winter

Avatar for Denix

Denix

September 14, 2017
Tweet

More Decks by Denix

Other Decks in Programming

Transcript

  1. 5 Interface of Java ◎介面(附錄A-20) Ø 一份method的『規格書』 ü 方法的名稱 ü

    方法的參數 ü 方法的回傳值 介面 I 類別 C implements 類別 C 具有 介面 I 的功能 methods ….名稱 ….參數 ….回傳值 methods ….內容
  2. 7 Implement public class MainActivity extends Activity implements OnClickListener{ …

    protected void onCreate(…){ … Button btn= findViewById(…); btn.setOnClickListener(this); } public void onClick(View v){ … } } 可處理『按一 下』事件 撰寫『按一下』 事件處理方法 取得按鈕 物件 以this向 btn登錄 button 登錄 呼叫