Anddroid OSとは

📝Linux をカスタマイズした 🔖OS, by 🔖Google.

Android開発概論

Android Framework の 4 大要素は以下.

  • Activity
  • Service
  • BroadCast Reciever
  • Countent Providor

Activity

An activity is a single, focused thing that the user can do http://developer.android.com/reference/android/app/Activity.html

Activity とは, “Android アプリの画面” Android で動く携帯 Java アプリ作成入門 (2):Android アプリ作成の基本”Activity”とは何か? (1/2) - @ IT

Provides a visual interface for user interaction. アクティビティ - Android 開発入門

Lifecycle

アクティビティのライフサイクル - Android 入門

Template-Method Pattern が利用されている.

Intent

An intent is an abstract description of an operation to be performed. Intent | Android Developers

アクティビティは別のアクティビティを呼び出し, ユーザーが行いたがっている情報を渡すためのクラス.

インテントは, アクティビティ同士が起動し合える, 緩い結合システムの基礎を形成

Command Pattern の Command に相当.

Explicite Intent

明示的インテント, アクティビティを直接指定して起動させる

Implicite Intent

暗黙的インテント, アクティビティは指定しない. サービスが決められたアクティビティを起動する.

決められたルールをインテントフィルタという.

明示的インテントと暗黙的インテントの自分の理解

Windows ではある拡張子のファイルをダブルクリックしたときに, 起動されるデフォルトのアプリケーションが決まっている. ダブルクリックが Inplicite に相当.

ファイルを右クリックして, アプリケーションを指定して実行することもできる. 右クリックでアプリケーションを指定することが Explicite に相当.

明示的インテントと暗黙的インテント - Android 開発入門

Service

常駐型アプリケーションには, Service を利用する.

Android での常駐型 Service を使う方法 (LocalService による常駐アプリ) | Tech Booster

バックグラウンドで動くプログラム.

Runs in background to perform long-running operations or to access remote resource

Service のライフサイクル

  • onCreate
  • onStartCommand
  • onDestroy

Service の実行方法

2 種類の方法がある.

  • Started Serveces

    startService/stopService.

    • onCreate ()
    • onDestroy ()
    • onStartCommand ()
  • Bound Services

    bindService/unbindService.

    • onCreate ()
    • onDestroy ()
    • onBind/onUnbind

    Bound Service は Server-Client モデルにおける Server.

BroadCast Reciever

アプリケーションが配信するインテントの監視が複数のグループで行える.

Observer Pattern.

Content Providor

複数のアプリケーションで利用できるデータストアへのアクセスを提供

Cuncurrency Framework

HaMeR FrameWork

以下の 3 つからなるフレームワーク

  • Message

Contains a description of a message’s type & an arbitrary data object that can sent to Handler via a MessageQueue

Message are created by Factory Method.

  • Handler

Allows the sending & processing of Message & Runnable objects in the MessageQueue associated with a Thread Looper

Active Object & Command Processor patterns

  • Runnable

Represents a command that can be executed.

これは, Procedure Value.

AsyncTask Framework

AsyncTask を利用した非同期処理 - Android 開発入門

Template-Method Pattern. Facade Pattern

IntentService

サービスの停止はキュー内の作業が全て終わったときに自動的に行われます.

AIDL

プロセス間通信. Android Interface Definition Language.

Android Interface Definition Language (AIDL) | Android Developers

  • AIDL ファイルに IPC のインターフェイスを記述する
  • Service にインターフェイスを実装する
  • Activity から Service に Bind し, インターフェイスを叩く

AIDL によるプロセス間通信 | xFutures

複数のアプリから使用される可能性のある処理を独立したプロセスとして切り離し, それぞれのアプリから使用できるようにサービス化しておくこと, そのサービスを利用すること」がプロセス間通信の目的.

身近な AIDL を使用するサービスの 1 つとして「アプリ内課金」があります.

Android のプロセス間通信を自由自在にする AIDL (1/3) - @ IT

開発環境

Futurismo