summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/activity/AboutActivity.java
blob: 625ef6c99edd592aafcd6e484b05b7455294a0ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package de.danoeh.antennapod.activity;

import android.os.Bundle;
import android.webkit.WebView;

import com.actionbarsherlock.app.SherlockActivity;

import de.danoeh.antennapod.R;

/** Displays the 'about' screen */
public class AboutActivity extends SherlockActivity {

	private WebView webview;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.about);		
		webview = (WebView) findViewById(R.id.webvAbout);
		webview.loadUrl("file:///android_asset/about.html");
	}

}