blob: d3b32aeb5f280b25e0b417c9702918f397e29ed1 [file] [log] [blame]
Alexandre Savard817dc502012-10-22 11:47:29 -04001/*
2 * Copyright (C) 2004-2012 Savoir-Faire Linux Inc.
3 *
4 * Author: Alexandre Savard <alexandre.savard@savoirfairelinux.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 * Additional permission under GNU GPL version 3 section 7:
21 *
22 * If you modify this program, or any covered work, by linking or
23 * combining it with the OpenSSL project's OpenSSL library (or a
24 * modified version of that library), containing parts covered by the
25 * terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
26 * grants you additional permission to convey the resulting work.
27 * Corresponding Source for a non-source form of such a combination
28 * shall include the source code for the parts of OpenSSL used as well
29 * as that of the covered work.
30 */
31package com.savoirfairelinux.sflphone.client;
32
33import android.app.AlertDialog;
34import android.app.Dialog;
35import android.content.Context;
36import android.content.DialogInterface;
37import android.os.Bundle;
38import android.widget.ArrayAdapter;
39import android.widget.ListView;
40
41import java.util.ArrayList;
42
43public class AccountSelectionDialog extends AlertDialog
44{
45 Context mContext;
46 ListView mListView;
47 ArrayAdapter mListAdapter;
48 ArrayList<String> mItems;
49
50 public AccountSelectionDialog(Context context, ArrayList<String> items)
51 {
52 super(context);
53 mContext = context;
54 mItems = items;
55 }
56
57 private DialogInterface.OnClickListener onClick = new DialogInterface.OnClickListener()
58 {
59 public void onClick(DialogInterface dialog, int which) {
60 }
61 };
62
63 public void onCreate(Bundle savedInstanceState)
64 {
65 mListView = new ListView(mContext);
66 mListAdapter = new ArrayAdapter(mContext, android.R.layout.simple_expandable_list_item_1, mItems.toArray());
67 mListView.setAdapter(mListAdapter);
68 setContentView(mListView);
69 }
70
71 public Dialog onCreateDialog(Bundle savedInstanceState)
72 {
73 AlertDialog.Builder builder = new AlertDialog.Builder(mContext);
74 builder.setTitle("Account Selection");
75
76 return builder.create();
77 }
78}