diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..796b96d --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..6721ebf --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,27 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 23 + buildToolsVersion "23.0.3" + + defaultConfig { + applicationId "com.fiona.personalcodingproject" + minSdkVersion 15 + targetSdkVersion 23 + versionCode 1 + versionName "1.0" + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + compile fileTree(dir: 'libs', include: ['*.jar']) + testCompile 'junit:junit:4.12' + compile 'com.android.support:appcompat-v7:23.4.0' + compile 'com.android.support:support-v4:23.4.0' +} diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..418603c --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,17 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in C:\Users\Fiona\AppData\Local\Android\Sdk/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} diff --git a/app/src/androidTest/java/com/fiona/personalcodingproject/ApplicationTest.java b/app/src/androidTest/java/com/fiona/personalcodingproject/ApplicationTest.java new file mode 100644 index 0000000..952b53a --- /dev/null +++ b/app/src/androidTest/java/com/fiona/personalcodingproject/ApplicationTest.java @@ -0,0 +1,13 @@ +package com.fiona.personalcodingproject; + +import android.app.Application; +import android.test.ApplicationTestCase; + +/** + * Testing Fundamentals + */ +public class ApplicationTest extends ApplicationTestCase { + public ApplicationTest() { + super(Application.class); + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..c724ce0 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/app/src/main/java/com/fiona/personalcodingproject/LaughingActivity.java b/app/src/main/java/com/fiona/personalcodingproject/LaughingActivity.java new file mode 100644 index 0000000..9a9d8ee --- /dev/null +++ b/app/src/main/java/com/fiona/personalcodingproject/LaughingActivity.java @@ -0,0 +1,114 @@ +package com.fiona.personalcodingproject; + +import android.app.Activity; +import android.content.Context; +import android.content.Intent; +import android.os.Bundle; +import android.view.View; +import android.widget.Button; +import android.widget.ImageButton; +import android.view.View.OnClickListener; + +public class LaughingActivity extends Activity { + // reference to buttons + Button button; + + @Override + // store or save information to the button + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + // connect to laughing_fullscreen XML file + setContentView(R.layout.laughing_fullscreen); + addListenerOnButton1(); + addListenerOnButton2(); + addListenerOnButton3(); + addListenerOnButton4(); + addListenerOnButton5(); + addListenerOnButton6(); + + } + + public void addListenerOnButton1() { + final Context context = this; + // connect the button to the Rapunzel Image Button + button = (ImageButton)findViewById(R.id.RapunzelButton); + button.setOnClickListener(new View.OnClickListener() { + @Override + // connect main class to the LaughingActivity class (main class activated after LaughingActivity class) + public void onClick(View v) { + Intent intent = new Intent(context, main.class); + startActivity(intent); + } + }); + + } + public void addListenerOnButton2() { + final Context context = this; + // connect the button to the LionKing Image Button + button = (ImageButton) findViewById(R.id.LionKingButton); + button.setOnClickListener(new View.OnClickListener() { + @Override + // connect main class to the LaughingActivity class (main class activated after LaughingActivity class) + public void onClick(View v) { + Intent intent = new Intent(context, main.class); + startActivity(intent); + } + }); + } + + public void addListenerOnButton3() { + final Context context = this; + // connect the button to the Elsa Image Button + button = (ImageButton) findViewById(R.id.ElsaButton); + button.setOnClickListener(new View.OnClickListener() { + @Override + // connect main class to the LaughingActivity class (main class activated after LaughingActivity class) + public void onClick(View v) { + Intent intent = new Intent(context, main.class); + startActivity(intent); + } + }); + } + + public void addListenerOnButton4() { + final Context context = this; + // connect the button to the Aladdin Image Button + button = (ImageButton) findViewById(R.id.AladdinButton); + button.setOnClickListener(new View.OnClickListener() { + @Override + // connect main class to the LaughingActivity class (main class activated after LaughingActivity class) + public void onClick(View v) { + Intent intent = new Intent(context, main.class); + startActivity(intent); + } + }); + } + + public void addListenerOnButton5() { + final Context context = this; + // connect the button to the Mulan Image Button + button = (ImageButton) findViewById(R.id.MulanButton); + button.setOnClickListener(new View.OnClickListener() { + @Override + // connect main class to the LaughingActivity class (main class activated after LaughingActivity class) + public void onClick(View v) { + Intent intent = new Intent(context, main.class); + startActivity(intent); + } + }); + } + + public void addListenerOnButton6() { + final Context context = this; + // connect the button to the Pocahontas Image Button + button = (ImageButton) findViewById(R.id.PocahontasButton); + button.setOnClickListener(new View.OnClickListener() { + @Override + // connect main class to the LaughingActivity class (main class activated after LaughingActivity class) + public void onClick(View v) { + Intent intent = new Intent(context, main.class); + startActivity(intent); + } + }); + } +} \ No newline at end of file diff --git a/app/src/main/java/com/fiona/personalcodingproject/main.java b/app/src/main/java/com/fiona/personalcodingproject/main.java new file mode 100644 index 0000000..757476e --- /dev/null +++ b/app/src/main/java/com/fiona/personalcodingproject/main.java @@ -0,0 +1,42 @@ +package com.fiona.personalcodingproject; + +import android.app.Activity; +import android.net.Uri; +import android.os.Bundle; +import android.widget.Button; +import android.widget.MediaController; +import android.support.v7.app.AppCompatActivity; +import android.widget.VideoView; + + +public class main extends Activity { + // references to button + Button button; + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + // connect to activity_play_video XML file + setContentView(R.layout.activity_play_video); + } +} +// Rapunzel video +public class main2 extends AppCompatActivity { + @Override + // content view is set + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.laughing_fullscreen); + // connect to videoView XML layout + VideoView videoView = (VideoView)findViewById(R.id.videoView); + MediaController mediaController=new MediaController(this); + mediaController.setAnchorView(videoView); + // stream video (Rapunzel Youtube Video) + Uri uri=Uri.parse("rtsp://r13---sn-vgqs7ner.googlevideo.com/Cj0LENy73wIaNAlIBfErgNgqRxMYDSANFC0Z82FXMOCoAUIASARgtdjU2NCE9btPigELRWxtS3N2ZHdDN00M/35338A718972CBCCF0C6F3E86A99F7CC7DB64B5C.50242B3E06D30B98C682E6F92F1A9C2018BB5A65/yt6/1/video.3gp"); + videoView.setMediaController(mediaController); + videoView.setVideoURI(uri); + videoView.requestFocus(); + // start video + videoView.start(); + } +} + diff --git a/app/src/main/java/com/fiona/personalcodingproject/openpic.java b/app/src/main/java/com/fiona/personalcodingproject/openpic.java new file mode 100644 index 0000000..538bc10 --- /dev/null +++ b/app/src/main/java/com/fiona/personalcodingproject/openpic.java @@ -0,0 +1,36 @@ +package com.fiona.personalcodingproject; + +import android.app.Activity; +import android.content.Context; +import android.content.Intent; +import android.os.Bundle; +import android.view.View; +import android.widget.Button; + + +public class OpenPic extends Activity { + // reference button + Button button; + + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + // connect to starting XML file + setContentView(R.layout.starting); + addListenerOnButton(); + } + + public void addListenerOnButton() { + final Context context = this; + // connect to imagebutton id from the starting XML file + button = (Button)findViewById(R.id.imagebutton); + button.setOnClickListener(new View.OnClickListener() { + @Override + // connect openpic class to the pic class (pic class activated after openpic class) + public void onClick(View v) { + Intent intent = new Intent(context, pic.class); + startActivity(intent); + } + }); + } +} diff --git a/app/src/main/java/com/fiona/personalcodingproject/pic.java b/app/src/main/java/com/fiona/personalcodingproject/pic.java new file mode 100644 index 0000000..4095f11 --- /dev/null +++ b/app/src/main/java/com/fiona/personalcodingproject/pic.java @@ -0,0 +1,20 @@ +package com.fiona.personalcodingproject; + +import android.os.Bundle; +import android.widget.Button; + + +public class pic extends OpenPic { + // reference to button + Button button; + + @Override + // save information to the activity of the selected button + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + //connect to image XML file + setContentView(R.layout.image); + // when press back, will go back to previous screen + onBackPressed(); + } +} diff --git a/app/src/main/res/layout/activity_play_video.xml b/app/src/main/res/layout/activity_play_video.xml new file mode 100644 index 0000000..4957af7 --- /dev/null +++ b/app/src/main/res/layout/activity_play_video.xml @@ -0,0 +1,21 @@ + + + + + + + diff --git a/app/src/main/res/layout/image.xml b/app/src/main/res/layout/image.xml new file mode 100644 index 0000000..66a5870 --- /dev/null +++ b/app/src/main/res/layout/image.xml @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/laughing_fullscreen.xml b/app/src/main/res/layout/laughing_fullscreen.xml new file mode 100644 index 0000000..47e1fe4 --- /dev/null +++ b/app/src/main/res/layout/laughing_fullscreen.xml @@ -0,0 +1,62 @@ + + + // Rapunzel Button + + + // Lion King Button + + + // Elsa Button + + + // Aladdin Button + + + // Mulan Button + + + // Pocahontas Button + + + diff --git a/app/src/main/res/layout/starting.xml b/app/src/main/res/layout/starting.xml new file mode 100644 index 0000000..247056f --- /dev/null +++ b/app/src/main/res/layout/starting.xml @@ -0,0 +1,15 @@ + + + +