summaryrefslogtreecommitdiff
path: root/SDL_Android/LivioTesterApp/src/com/livio/sdltester/HelpActivity.java
blob: 3748c90ab93c6559aa3143b2667dc8a29b22930d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package com.livio.sdltester;

import java.util.Stack;

import android.app.ActionBar;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuInflater;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.Toast;

public class HelpActivity extends Activity {

	public static final String EXTRA_ASSET_FILENAME = "com.livio.sdltester.HelpActivity.extraAssetFilename";
	
	private static final String ASSET_URL_FORMAT = "file:///android_asset/help_docs/html/";
	private static final String INDEX_FILENAME = "index.html";
	
	private WebView webView;
	private Stack<String> urlStack;
	
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_help);
		
		ActionBar actionBar = getActionBar();
		if(actionBar != null){
			actionBar.setTitle("SDL Help");
		}
		
		urlStack = new Stack<String>();
		
		webView = (WebView) findViewById(R.id.wv_help);
		webView.setWebViewClient(new WebViewClient(){
			@Override
			public void onPageStarted(WebView view, String url, Bitmap favicon) {
				super.onPageStarted(view, url, favicon);
				urlStack.push(url);
			}

			@Override
			public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
				Toast.makeText(HelpActivity.this, "An error occurred.", Toast.LENGTH_LONG).show();
				
				// the current URL didn't work, so remove it from the url stack
				urlStack.pop();
			}
			
		});
		
		Intent incomingIntent = getIntent();
		if(incomingIntent.hasExtra(EXTRA_ASSET_FILENAME)){
			String fileName = incomingIntent.getStringExtra(EXTRA_ASSET_FILENAME);
			if(fileName != null && fileName.length() > 0){
				navigateToFileName(fileName);
			}
			else{
				navigateToIndex();
			}
		}
		else{
			navigateToIndex();
		}
	}
	
	private void navigateToFileName(String fileName){
		webView.loadUrl(makeUrl(fileName));
	}
	
	private void navigateToIndex(){
		webView.loadUrl(makeUrl(INDEX_FILENAME));
	}
	
	@Override
	public void onBackPressed() {
		if(urlStack == null || urlStack.size() <= 1){
			// if something went awry with the stack or if we're back at index when back is pressed, we'll just finish the activity
			finish();
		}
		else{
			// since we are going back, we don't need the current URL anymore
			urlStack.pop();
			
			// retrieve the last-visited page (it will be added back to the stack automatically when the page loads)
			String urlToLoad = urlStack.pop();
			webView.loadUrl(urlToLoad);
		}
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		MenuInflater inflater = getMenuInflater();
		inflater.inflate(R.menu.menu_help, menu);
		return true;
	}

	@Override
	public boolean onPrepareOptionsMenu(Menu menu) {
		android.view.MenuItem helpHome = (android.view.MenuItem) menu.findItem(R.id.menu_help_home);
		
		// show/hide connect/disconnect menu items
		boolean atIndex = (urlStack == null || urlStack.size() <= 1);
		helpHome.setVisible(!atIndex); // if we're not at the index, show the home button
		
		return true;
	}

	@Override
	public boolean onOptionsItemSelected(android.view.MenuItem item) {
		int menuItemId = item.getItemId();
		switch(menuItemId){
		case R.id.menu_help_home:
			urlStack.clear();
			navigateToIndex();
			return true;
		case R.id.menu_help_close:
			finish();
			return true;
		default:
			return super.onOptionsItemSelected(item);
		}
	}

	private static String makeUrl(String fileName){
		return new StringBuilder().append(ASSET_URL_FORMAT).append(fileName).toString();
	}

}