Back to project page BungalowAndroidApp.
The source code is released under:
MIT License
If you think the Android project BungalowAndroidApp 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 se.aleros.bungalow; /*from w w w. j a va 2 s . c o m*/ import android.os.Bundle; /** * Activity to show an individual news item * @extends WebActivity * @author alecca * */ public class RSSItemActivity extends WebActivity { @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); RSSItem item = (RSSItem)getIntent().getParcelableExtra("item"); String url = item.getUrl(); loadUrl(url); } }