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 package com.example.android.autofill.app.edgecases;
17 
18 import android.view.View;
19 
20 import com.example.android.autofill.app.R;
21 import com.google.common.collect.ImmutableMap;
22 
23 import java.util.LinkedHashMap;
24 import java.util.Map;
25 
26 public class MultipleStepsCreditCardActivity extends AbstractMultipleStepsActivity {
27 
28     @Override
getStepsMap()29     protected Map<Integer, String> getStepsMap() {
30         LinkedHashMap<Integer, String> steps = new LinkedHashMap<>(4);
31         steps.put(R.string.credit_card_number_label,
32                 View.AUTOFILL_HINT_CREDIT_CARD_NUMBER);
33         steps.put(R.string.credit_card_expiration_month_label,
34                 View.AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH);
35         steps.put(R.string.credit_card_expiration_year_label,
36                 View.AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR);
37         steps.put(R.string.credit_card_security_code_abbrev_label,
38                 View.AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE);
39         return ImmutableMap.copyOf(steps);
40     }
41 }
42