eleith
/
calchoochoo
Archived
1
0
Fork 0
This repository has been archived on 2020-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
calchoochoo/app/src/main/java/com/eleith/calchoochoo/ScheduleExplorerActivity.java

14 lines
360 B
Java

package com.eleith.calchoochoo;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class ScheduleExplorerActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.schedule_explorer_activity);
}
}