1
0
mirror of https://github.com/bspeice/itcs4180 synced 2025-12-16 01:57:47 -05:00

FoundActivity now loads Webview

This commit is contained in:
tokugawa
2014-04-26 01:08:30 -04:00
parent e29d802998
commit f3582b1815
3 changed files with 30 additions and 30 deletions

View File

@ -39,7 +39,7 @@ public class FoundActivity extends Activity {
tryMoreButton = (Button)findViewById(R.id.tryMoreButton);
restLocation = (RestLocation)(getIntent().getSerializableExtra("restLocation"));
//moreInfoWebView.loadUrl(restLocation.getKey());
moreInfoWebView.loadData(restLocation.getKey(), "text/html", "UTF-8");
tryMoreButton.setOnClickListener(new OnClickListener(){
@ -50,9 +50,6 @@ public class FoundActivity extends Activity {
finish();
}
});
//TODO
//Add found location to database
}
@Override