CISC181 S2019 NewPlainJavaInAndroidStudio

From class_wiki
Revision as of 09:57, 17 April 2019 by Cer (talk | contribs)
Jump to: navigation, search

This is necessary for JUnit testing to work smoothly

  1. Open your Android project in Android Studio. If you do not have one, create one.
  2. On the far left there should be a "project view" pane. If not, click sideways (vertical) tab that says "1: Project" or type "Alt+1" (hold down Alt key and press 1)
  3. Open the "app/java" module folder. There should be 3 subdirectories starting with your package name ("cisc181.mylabN" or similar). The second and third should have "(androidTest)" and "(test)" after the package name.
  4. Right-click the first directory and choose New > Java Class. Fill in the name of your top level class if you have a main(), or whatever utility class you are developing (such as "Fraction"), and click "OK".
  5. In the project pane, double-click on the package subdirectory and then "MyClass" (or whatever your class name is) and start coding! For example, paste this into MyClass (between the curly braces) and save with Control-S:
 public static void main(String[] args) 
 {
   System.out.println("Hello World!"); 
 }
  1. Before you forget, make sure to ADD YOUR NAME to the code as a comment.
  2. Click on the drop down menu to the left of the Run button (the green triangle next to the bug icon). Click Edit Configurations...
  3. In the new window, click on the green plus sign at the top left of the window and select Application
  4. A new application configuration should appear. Enter in the details such as name ("MyJavaProgram"), your full main class ("cisc181.mylab_n.MyClass"), and classpath of your module ("app"), and click OK. Pop-up menus should help with faster completion here.

Now if you click Run (or use Shift+F10 keyboard shortcut), this should compile and run your app module. If it does not happen quickly (the first time may be quite slow), there is a progress bar at the bottom of the window. If you get an error the first time, try again.

You can tweak your editor's look and feel at File > Settings > Editor