public class

NetworkQueryService

extends Service
java.lang.Object
   ↳ android.content.Context
     ↳ android.content.ContextWrapper
       ↳ android.app.Service
         ↳ com.android.phone.NetworkQueryService

Class Overview

Service code used to assist in querying the network for service availability.

Summary

Nested Classes
class NetworkQueryService.LocalBinder Class for clients to access. 
Constants
int QUERY_EXCEPTION
int QUERY_OK
[Expand]
Inherited Constants
From class android.app.Service
From class android.content.Context
From interface android.content.ComponentCallbacks2
Public Constructors
NetworkQueryService()
Public Methods
IBinder onBind(Intent intent)
Handle the bind request.
void onCreate()
void onStart(Intent intent, int startId)
Required for service implementation.
[Expand]
Inherited Methods
From class android.app.Service
From class android.content.ContextWrapper
From class android.content.Context
From class java.lang.Object
From interface android.content.ComponentCallbacks
From interface android.content.ComponentCallbacks2

Constants

public static final int QUERY_EXCEPTION

Constant Value: 1 (0x00000001)

public static final int QUERY_OK

Constant Value: 0 (0x00000000)

Public Constructors

public NetworkQueryService ()

Public Methods

public IBinder onBind (Intent intent)

Handle the bind request.

public void onCreate ()

public void onStart (Intent intent, int startId)

Required for service implementation.