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

Fixed contexts.

This commit is contained in:
tokugawa
2014-04-21 14:51:10 -04:00
parent a9e13e3826
commit c4a3799243
4 changed files with 11 additions and 10 deletions

View File

@ -46,7 +46,7 @@ public class FoundActivity extends Activity {
@Override
public void onClick(View v) {
intent = new Intent(getApplicationContext(), MainActivity.class);
intent = new Intent(FoundActivity.this, MainActivity.class);
startActivity(intent);
finish();
}