1 /* 2 * Copyright (C) 2019 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 android.telephony.cts.financialsms; 18 19 import android.app.Activity; 20 import android.database.CursorWindow; 21 import android.os.Bundle; 22 import android.os.RemoteCallback; 23 import android.telephony.SmsManager; 24 import android.util.Log; 25 26 import java.util.ArrayList; 27 import java.util.List; 28 import java.util.concurrent.CountDownLatch; 29 import java.util.concurrent.TimeUnit; 30 31 public class MainActivity extends Activity { 32 private static int rowNum = -1; 33 34 @Override onCreate(Bundle savedInstanceState)35 protected void onCreate(Bundle savedInstanceState) { 36 super.onCreate(savedInstanceState); 37 try { 38 SmsManager.getDefault().getSmsMessagesForFinancialApp(new Bundle(), 39 getMainExecutor(), 40 new SmsManager.FinancialSmsCallback() { 41 public void onFinancialSmsMessages(CursorWindow msgs) { 42 rowNum = -1; 43 if (msgs != null) { 44 rowNum = msgs.getNumRows(); 45 } 46 }}); 47 } catch (Exception e) { 48 Log.w("MainActivity", "received Exception e:" + e); 49 }finally { 50 Bundle result = new Bundle(); 51 result.putString("class", getClass().getName()); 52 result.putInt("rowNum", rowNum); 53 getIntent().<RemoteCallback>getParcelableExtra("callback").sendResult(result); 54 } 55 finish(); 56 } 57 } 58