comparison src/com/five_ten_sg/connectbot/WizardActivity.java @ 307:071eccdff8ea ganymed

fix java formatting
author Carl Byington <carl@five-ten-sg.com>
date Wed, 30 Jul 2014 14:16:58 -0700
parents 29a431920007
children
comparison
equal deleted inserted replaced
305:d2b303406d63 307:071eccdff8ea
46 setContentView(R.layout.act_wizard); 46 setContentView(R.layout.act_wizard);
47 this.flipper = (ViewFlipper) findViewById(R.id.wizard_flipper); 47 this.flipper = (ViewFlipper) findViewById(R.id.wizard_flipper);
48 // inflate the layout for EULA step 48 // inflate the layout for EULA step
49 LayoutInflater inflater = LayoutInflater.from(this); 49 LayoutInflater inflater = LayoutInflater.from(this);
50 View helpView = inflater.inflate(R.layout.wiz_eula, this.flipper, false); 50 View helpView = inflater.inflate(R.layout.wiz_eula, this.flipper, false);
51
52 this.flipper.addView(helpView); 51 this.flipper.addView(helpView);
53 // Add a view for each help topic we want the user to see. 52 // Add a view for each help topic we want the user to see.
54 String[] topics = getResources().getStringArray(R.array.list_wizard_topics); 53 String[] topics = getResources().getStringArray(R.array.list_wizard_topics);
55 54
56 for (String topic : topics) { 55 for (String topic : topics) {