• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2015 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.android.car.dialer;
17 
18 import android.os.Bundle;
19 import android.support.v4.app.Fragment;
20 import android.text.TextUtils;
21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
24 import android.widget.TextView;
25 
26 
27 public class NoHfpFragment extends Fragment {
28     private String mErrorMessage;
29 
setErrorMessage(String message)30     public void setErrorMessage(String message) {
31         mErrorMessage = message;
32     }
33 
34     @Override
onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)35     public View onCreateView(LayoutInflater inflater, ViewGroup container,
36             Bundle savedInstanceState) {
37         View v = inflater.inflate(R.layout.no_hfp, container, false);
38         // If no error message is set, the default string from the layout will be used.
39         if (!TextUtils.isEmpty(mErrorMessage)) {
40             ((TextView) v.findViewById(R.id.error_string)).setText(mErrorMessage);
41         }
42         return v;
43     }
44 }
45