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 com.android.bluetooth.R;
19 import com.android.bluetooth.map.BluetoothMapAccountItem;
20 
21 import java.util.ArrayList;
22 import java.util.LinkedHashMap;
23 
24 import android.app.Activity;
25 import android.os.Bundle;
26 import android.widget.ExpandableListView;
27 
28 
29 public class BluetoothMapSettings extends Activity {
30 
31     private static final String TAG = "BluetoothMapSettings";
32     private static final boolean D = BluetoothMapService.DEBUG;
33     private static final boolean V = BluetoothMapService.VERBOSE;
34 
35 
36 
37     BluetoothMapAccountLoader mLoader = new BluetoothMapAccountLoader(this);
38     LinkedHashMap<BluetoothMapAccountItem,ArrayList<BluetoothMapAccountItem>> mGroups;
39 
40     @Override
onCreate(Bundle savedInstanceState)41     protected void onCreate(Bundle savedInstanceState) {
42         super.onCreate(savedInstanceState);
43         /* set UI */
44         setContentView(R.layout.bluetooth_map_settings);
45         /* create structure for list of groups + items*/
46         mGroups = mLoader.parsePackages(true);
47 
48 
49         /* update expandable listview with correct items */
50         ExpandableListView listView =
51             (ExpandableListView) findViewById(R.id.bluetooth_map_settings_list_view);
52 
53         BluetoothMapSettingsAdapter adapter = new BluetoothMapSettingsAdapter(this,
54                 listView, mGroups, mLoader.getAccountsEnabledCount());
55         listView.setAdapter(adapter);
56     }
57 
58 
59 }
60