blob: eaa1c07295ade394a2a12cf67a2b9f153d5808c1 [file] [log] [blame]
Alexandre Savarddcd37402012-09-06 18:36:48 -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 */
31
32package com.savoirfairelinux.sflphone.client;
33
34import android.app.Fragment;
35import android.os.Bundle;
36import android.util.Log;
37import android.view.LayoutInflater;
38import android.view.View;
39import android.view.ViewGroup;
40import android.widget.Button;
41
42import com.savoirfairelinux.sflphone.R;
43
44public class PrefManagementFragment extends Fragment
45{
46 static final String TAG = "PrefManagementFragment";
47 Button buttonCodecUp, buttonCodecDown;
48
49 public PrefManagementFragment()
50 {
51 }
52
53 @Override
54 public void onCreate(Bundle savedInstanceState)
55 {
56 super.onCreate(savedInstanceState);
57
58 Log.i(TAG, "Create Preferences Managerment");
59
60 buttonCodecUp = (Button) getActivity().findViewById(R.id.buttonCodecUp);
61 buttonCodecDown = (Button) getActivity().findViewById(R.id.buttonCodecDown);
62 }
63
64 @Override
65 public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState)
66 {
67 Log.i(TAG, "Create Preferences Management View");
68
69 return inflater.inflate(R.layout.pref_management_layout, parent, false);
70 }
71}