• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2022 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.tv.settings.system.development;
18 
19 import android.os.Build;
20 import android.os.Bundle;
21 import android.provider.Settings;
22 import android.view.LayoutInflater;
23 import android.view.View;
24 import android.view.ViewGroup;
25 import android.widget.ImageView;
26 import android.widget.TextView;
27 
28 import androidx.annotation.Keep;
29 
30 import com.android.tv.twopanelsettings.R;
31 import com.android.tv.twopanelsettings.slices.InfoFragment;
32 
33 /**  An {@link InfoFragment} that hosts preview pane of wireless debugging preference. */
34 @Keep
35 public class WirelessDebuggingInfoFragment extends InfoFragment {
36 
37     @Override
onCreateView( LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)38     public View onCreateView(
39             LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
40         View view = super.onCreateView(inflater, container, savedInstanceState);
41         ((ImageView) view.findViewById(R.id.info_title_icon))
42                 .setImageResource(R.drawable.ic_info_outline_base);
43         view.findViewById(R.id.info_title_icon).setVisibility(View.VISIBLE);
44         ((TextView) view.findViewById(R.id.info_summary))
45                 .setText(getString(R.string.adb_wireless_connection_failed_message,
46                         getDeviceName()));
47         view.findViewById(R.id.info_summary).setVisibility(View.VISIBLE);
48         return view;
49     }
50 
51     @Override
updateInfoFragment()52     public void updateInfoFragment() {
53         // No-op as this is hosting a static info preview panel
54     }
55 
getDeviceName()56     private String getDeviceName() {
57         String deviceName = Settings.Global.getString(getContext().getContentResolver(),
58                 Settings.Global.DEVICE_NAME);
59         if (deviceName == null) {
60             deviceName = Build.MODEL;
61         }
62         return deviceName;
63     }
64 }
65