Mercurial > 510Connectbot
annotate src/com/five_ten_sg/connectbot/HelpActivity.java @ 396:1f625669d89d
Added tag stable-1.9.0.6 for changeset 74d527fe7f5f
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 19 Sep 2014 15:27:51 -0700 |
parents | 04a0316bbfe3 |
children |
rev | line source |
---|---|
0 | 1 /* |
2 * ConnectBot: simple, powerful, open-source SSH client for Android | |
3 * Copyright 2007 Kenny Root, Jeffrey Sharkey | |
4 * | |
5 * Licensed under the Apache License, Version 2.0 (the "License"); | |
6 * you may not use this file except in compliance with the License. | |
7 * You may obtain a copy of the License at | |
8 * | |
9 * http://www.apache.org/licenses/LICENSE-2.0 | |
10 * | |
11 * Unless required by applicable law or agreed to in writing, software | |
12 * distributed under the License is distributed on an "AS IS" BASIS, | |
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
14 * See the License for the specific language governing permissions and | |
15 * limitations under the License. | |
16 */ | |
17 | |
18 package com.five_ten_sg.connectbot; | |
19 | |
20 import java.io.IOException; | |
21 | |
22 import android.app.Activity; | |
23 import android.content.Intent; | |
24 import android.content.pm.PackageManager.NameNotFoundException; | |
25 import android.os.Bundle; | |
26 import android.util.Log; | |
27 import android.view.View; | |
28 import android.view.View.OnClickListener; | |
29 import android.widget.Button; | |
30 import android.widget.LinearLayout; | |
31 import android.widget.TextView; | |
32 | |
33 /** | |
34 * @author Kenny Root | |
35 * | |
36 */ | |
37 public class HelpActivity extends Activity { | |
38 public final static String TAG = "ConnectBot.HelpActivity"; | |
39 | |
40 @Override | |
41 public void onCreate(Bundle icicle) { | |
42 super.onCreate(icicle); | |
43 setContentView(R.layout.act_help); | |
44 this.setTitle(String.format("%s: %s", | |
45 getResources().getText(R.string.app_name), | |
46 getResources().getText(R.string.title_help))); | |
47 LinearLayout content = (LinearLayout)this.findViewById(R.id.topics); | |
307 | 48 |
387
04a0316bbfe3
wizard and help present help pages in the same order
Carl Byington <carl@five-ten-sg.com>
parents:
386
diff
changeset
|
49 String[] topics = getResources().getStringArray(R.array.list_wizard_topics); |
386
e481699db6b1
wizard and help present help pages in the same order
Carl Byington <carl@five-ten-sg.com>
parents:
385
diff
changeset
|
50 for (final String topic : topics) { |
e481699db6b1
wizard and help present help pages in the same order
Carl Byington <carl@five-ten-sg.com>
parents:
385
diff
changeset
|
51 Button button = new Button(this); |
e481699db6b1
wizard and help present help pages in the same order
Carl Byington <carl@five-ten-sg.com>
parents:
385
diff
changeset
|
52 button.setText(topic); |
e481699db6b1
wizard and help present help pages in the same order
Carl Byington <carl@five-ten-sg.com>
parents:
385
diff
changeset
|
53 button.setOnClickListener(new OnClickListener() { |
e481699db6b1
wizard and help present help pages in the same order
Carl Byington <carl@five-ten-sg.com>
parents:
385
diff
changeset
|
54 public void onClick(View v) { |
e481699db6b1
wizard and help present help pages in the same order
Carl Byington <carl@five-ten-sg.com>
parents:
385
diff
changeset
|
55 Intent intent = new Intent(HelpActivity.this, HelpTopicActivity.class); |
e481699db6b1
wizard and help present help pages in the same order
Carl Byington <carl@five-ten-sg.com>
parents:
385
diff
changeset
|
56 intent.putExtra(Intent.EXTRA_TITLE, topic); |
e481699db6b1
wizard and help present help pages in the same order
Carl Byington <carl@five-ten-sg.com>
parents:
385
diff
changeset
|
57 HelpActivity.this.startActivity(intent); |
e481699db6b1
wizard and help present help pages in the same order
Carl Byington <carl@five-ten-sg.com>
parents:
385
diff
changeset
|
58 } |
e481699db6b1
wizard and help present help pages in the same order
Carl Byington <carl@five-ten-sg.com>
parents:
385
diff
changeset
|
59 }); |
e481699db6b1
wizard and help present help pages in the same order
Carl Byington <carl@five-ten-sg.com>
parents:
385
diff
changeset
|
60 content.addView(button); |
0 | 61 } |
62 } | |
63 } |