1 /* 2 * Copyright (C) 2017 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License 15 */ 16 17 package com.android.cts.verifier.dialer; 18 19 import android.content.Intent; 20 import android.os.IBinder; 21 import android.telecom.InCallService; 22 import java.util.Observable; 23 import android.telecom.Call; 24 25 public class DialerCallTestService extends InCallService { 26 27 private static DialerCallTestServiceObservable sObservable = 28 new DialerCallTestServiceObservable(); 29 30 @Override onBind(Intent intent)31 public IBinder onBind(Intent intent) { 32 return super.onBind(intent); 33 } 34 getObservable()35 public static DialerCallTestServiceObservable getObservable() { 36 return sObservable; 37 } 38 39 public static class DialerCallTestServiceObservable extends Observable { 40 private boolean onIncoming; 41 setOnIncoming(boolean value)42 public void setOnIncoming(boolean value) { 43 this.onIncoming = value; 44 setChanged(); 45 notifyObservers(value); 46 } 47 getOnIncoming()48 public boolean getOnIncoming() { 49 return this.onIncoming; 50 } 51 } 52 53 @Override onCallAdded(Call call)54 public void onCallAdded(Call call) { 55 if (call.getState() == Call.STATE_RINGING) { 56 getObservable().setOnIncoming(true); 57 } 58 } 59 } 60