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