/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts
6 by edam
- added GPL header comments to all files
1
/*
2
 * Merge.java
3
 *
50 by edam
updated all URLs, email addresses and package names to ed.am
4
 * Copyright (C) 2009 Tim Marston <tim@ed.am>
6 by edam
- added GPL header comments to all files
5
 *
6
 * This file is part of the Import Contacts program (hereafter referred
7
 * to as "this program"). For more information, see
50 by edam
updated all URLs, email addresses and package names to ed.am
8
 * http://ed.am/dev/android/import-contacts
6 by edam
- added GPL header comments to all files
9
 *
10
 * This program is free software: you can redistribute it and/or modify
11
 * it under the terms of the GNU General Public License as published by
12
 * the Free Software Foundation, either version 3 of the License, or
13
 * (at your option) any later version.
14
 *
15
 * This program is distributed in the hope that it will be useful,
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 * GNU General Public License for more details.
19
 *
20
 * You should have received a copy of the GNU General Public License
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
 */
23
50 by edam
updated all URLs, email addresses and package names to ed.am
24
package am.ed.importcontacts;
1 by edam
Initial import
25
26
import android.content.SharedPreferences;
27
import android.os.Bundle;
28
import android.widget.RadioGroup;
29
30
public class Merge extends WizardActivity
31
{
32
	@Override
41 by edam
- updated TODO
33
	protected void onCreate( Bundle saved_instance_state )
1 by edam
Initial import
34
	{
35
		setContentView( R.layout.merge );
41 by edam
- updated TODO
36
		super.onCreate( saved_instance_state );
1 by edam
Initial import
37
14 by edam
- got rid of the pretend ImportContacts activity alltogether (and made the Intro activity the startup one)
38
		setNextActivity( Doit.class );
1 by edam
Initial import
39
	}
40
41
	@Override
42
	protected void onPause()
43
	{
44
		super.onPause();
45
46
		SharedPreferences.Editor editor = getSharedPreferences().edit();
47
48
		// radio button selection
49
		RadioGroup rg = (RadioGroup)findViewById( R.id.merge_setting );
9 by edam
- added scroll view to all layouts
50
		editor.putInt( "merge_setting",
36 by edam
- formatting: removed some double-indents on overrunning lines
51
			Doit.convertIdToAction( rg.getCheckedRadioButtonId() ) );
1 by edam
Initial import
52
53
		editor.commit();
54
	}
55
56
	@Override
57
	protected void onResume()
58
	{
59
		super.onResume();
60
61
		SharedPreferences prefs = getSharedPreferences();
62
63
		// radio button selection
64
		RadioGroup rg = (RadioGroup)findViewById( R.id.merge_setting );
9 by edam
- added scroll view to all layouts
65
		rg.check( Doit.convertActionToId(
36 by edam
- formatting: removed some double-indents on overrunning lines
66
			prefs.getInt( "merge_setting", Doit.ACTION_PROMPT ) ) );
1 by edam
Initial import
67
	}
68
69
70
}