Back to project page radiogeek.
The source code is released under:
GNU General Public License
If you think the Android project radiogeek listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.farnabaz.android.radiogeek; //from ww w . jav a 2 s . c om import com.farnabaz.android.FActivity; import android.os.Bundle; import android.webkit.WebView; public class AboutActivity extends FActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_about); getSupportActionBar().setDisplayHomeAsUpEnabled(true); WebView web = (WebView) findViewById(R.id.about_webview); web.loadUrl("file:///android_asset/about.html"); } @Override protected void onDownloadFinish() { // TODO Auto-generated method stub } @Override protected void onDownloadStopped() { // TODO Auto-generated method stub } }