1 /*
2  * Copyright (C) 2015 Samsung System LSI
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *      http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 package com.android.bluetooth.map;
17 
18 import static android.view.WindowManager.LayoutParams.SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS;
19 
20 import android.app.Activity;
21 import android.os.Bundle;
22 import android.widget.ExpandableListView;
23 
24 import com.android.bluetooth.R;
25 
26 import java.util.ArrayList;
27 import java.util.LinkedHashMap;
28 
29 public class BluetoothMapSettings extends Activity {
30     private static final String TAG = "BluetoothMapSettings";
31 
32     BluetoothMapAccountLoader mLoader = new BluetoothMapAccountLoader(this);
33     LinkedHashMap<BluetoothMapAccountItem, ArrayList<BluetoothMapAccountItem>> mGroups;
34 
35     @Override
onCreate(Bundle savedInstanceState)36     protected void onCreate(Bundle savedInstanceState) {
37         super.onCreate(savedInstanceState);
38         getWindow().addSystemFlags(SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS);
39         /* set UI */
40         setContentView(R.layout.bluetooth_map_settings);
41         /* create structure for list of groups + items*/
42         mGroups = mLoader.parsePackages(true);
43 
44         /* update expandable listview with correct items */
45         ExpandableListView listView =
46                 (ExpandableListView) findViewById(R.id.bluetooth_map_settings_list_view);
47 
48         BluetoothMapSettingsAdapter adapter =
49                 new BluetoothMapSettingsAdapter(
50                         this, listView, mGroups, mLoader.getAccountsEnabledCount());
51         listView.setAdapter(adapter);
52     }
53 }
54