diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 3a79285..093a574 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -11,16 +11,13 @@
+ android:theme="@style/Theme.AppCompat.NoActionBar">
-
diff --git a/app/src/main/java/com/gabriel/buddhism/MainActivity.java b/app/src/main/java/com/gabriel/buddhism/MainActivity.java
index 12885de..5937d13 100644
--- a/app/src/main/java/com/gabriel/buddhism/MainActivity.java
+++ b/app/src/main/java/com/gabriel/buddhism/MainActivity.java
@@ -1,20 +1,18 @@
package com.gabriel.buddhism;
-import android.app.Activity;
import android.os.Bundle;
-import android.support.design.widget.FloatingActionButton;
-import android.support.design.widget.Snackbar;
-import android.view.LayoutInflater;
-import android.view.MotionEvent;
-import android.view.View;
+import android.os.Handler;
+import android.os.Looper;
import android.support.design.widget.NavigationView;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
-import android.view.Menu;
+import android.view.Gravity;
import android.view.MenuItem;
+import android.view.MotionEvent;
+import android.view.View;
import android.widget.Button;
import android.widget.RelativeLayout;
@@ -26,43 +24,46 @@ import com.github.amlcurran.showcaseview.targets.ViewTarget;
public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
+ private Toolbar toolbar;
+ private ActionBarDrawerToggle toggle;
private int introCounter;
- private FloatingActionButton fab;
+ private ShowcaseView overlay;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
introCounter=0;
- Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
+ toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
- fab = (FloatingActionButton) findViewById(R.id.fab);
- fab.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View view) {
- Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
- .setAction("Action", null).show();
- }
- });
- DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
- ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
- this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
+ final DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
+ toggle = new ActionBarDrawerToggle(
+ this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close){
+ @Override
+ public void onDrawerOpened(View drawerView) {
+ super.onDrawerOpened(drawerView);
+ if(overlay==null) drawer.closeDrawer(GravityCompat.START);
+ else overlay.hide();
+ }
+ };
drawer.setDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
- intro();
+ new Thread(new Runnable() {@Override public void run() {
+ try {Thread.sleep(1000);} catch (InterruptedException e) {e.printStackTrace();}
+ new Handler(Looper.getMainLooper()).post(new Runnable() {@Override public void run() {intro();}});}}).start();
+ findViewById(R.id.main).setVisibility(View.GONE);
}
public void intro(){
if(introCounter==0){
++introCounter;
new ShowcaseView.Builder(this)
- .setContentTitle("Showcasing!")
- .setContentText("This is a 'Floating Action Button'!")
- .withHoloShowcase()
+ .replaceEndButton((Button) getLayoutInflater().inflate(R.layout.got_it, (RelativeLayout) findViewById(R.id.main_parent), false))
+ .setContentTitle("Welcome")
+ .setContentText(getResources().getText(R.string.welcome1))
// .replaceEndButton((Button) getLayoutInflater().inflate(R.layout.bye_button, (RelativeLayout) findViewById(R.id.main_parent), false))
- .hideOnTouchOutside()
.setShowcaseEventListener(new OnShowcaseEventListener(){
@Override
public void onShowcaseViewHide(ShowcaseView showcaseView) {
@@ -71,7 +72,55 @@ public class MainActivity extends AppCompatActivity
@Override
public void onShowcaseViewDidHide(ShowcaseView showcaseView) {
- intro();
+ new Thread(new Runnable() {@Override public void run() {
+ try {Thread.sleep(1000);} catch (InterruptedException e) {e.printStackTrace();}
+ new Handler(Looper.getMainLooper()).post(new Runnable() {@Override public void run() {intro();}
+ });
+ }}).start();
+ }
+
+ @Override
+ public void onShowcaseViewShow(ShowcaseView showcaseView) {
+
+ }
+
+ @Override
+ public void onShowcaseViewTouchBlocked(MotionEvent motionEvent) {
+
+ }
+ })
+ .build();
+ }else if(introCounter==1){
+ ++introCounter;
+ overlay = new ShowcaseView.Builder(this).replaceEndButton(R.layout.got_it)
+ .setTarget(new PointTarget(50, 60))
+ .replaceEndButton((Button) getLayoutInflater().inflate(R.layout.got_it, (RelativeLayout) findViewById(R.id.main_parent), false))
+ .setContentTitle("Instructions")
+ .setContentText(getResources().getText(R.string.welcome2) + "\n" + getResources().getText(R.string.signoff))
+ .setShowcaseEventListener(new OnShowcaseEventListener() {
+ @Override
+ public void onShowcaseViewHide(ShowcaseView showcaseView) {
+
+ }
+
+ @Override
+ public void onShowcaseViewDidHide(ShowcaseView showcaseView) {
+ new Thread(new Runnable() {
+ @Override
+ public void run() {
+ try {
+ Thread.sleep(1000);
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ new Handler(Looper.getMainLooper()).post(new Runnable() {
+ @Override
+ public void run() {
+ intro();
+ }
+ });
+ }
+ }).start();
}
@Override
@@ -97,28 +146,6 @@ public class MainActivity extends AppCompatActivity
}
}
- @Override
- public boolean onCreateOptionsMenu(Menu menu) {
- // Inflate the menu; this adds items to the action bar if it is present.
- getMenuInflater().inflate(R.menu.main, menu);
- return true;
- }
-
- @Override
- public boolean onOptionsItemSelected(MenuItem item) {
- // Handle action bar item clicks here. The action bar will
- // automatically handle clicks on the Home/Up button, so long
- // as you specify a parent activity in AndroidManifest.xml.
- int id = item.getItemId();
-
- //noinspection SimplifiableIfStatement
- if (id == R.id.action_settings) {
- return true;
- }
-
- return super.onOptionsItemSelected(item);
- }
-
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
@@ -139,10 +166,4 @@ public class MainActivity extends AppCompatActivity
drawer.closeDrawer(GravityCompat.START);
return true;
}
- public class SettingsDialogue extends Activity {
- @Override
- public void onCreate(Bundle b){
- super.onCreate(b);
- }
- }
}
\ No newline at end of file
diff --git a/app/src/main/res/layout/app_bar_main.xml b/app/src/main/res/layout/app_bar_main.xml
index 761bbd9..a12f7ee 100644
--- a/app/src/main/res/layout/app_bar_main.xml
+++ b/app/src/main/res/layout/app_bar_main.xml
@@ -23,12 +23,4 @@
-
-
diff --git a/app/src/main/res/layout/bye_button.xml b/app/src/main/res/layout/bye_button.xml
deleted file mode 100644
index eddcee0..0000000
--- a/app/src/main/res/layout/bye_button.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/content_main.xml b/app/src/main/res/layout/content_main.xml
index 9e49b4e..d322dbc 100644
--- a/app/src/main/res/layout/content_main.xml
+++ b/app/src/main/res/layout/content_main.xml
@@ -12,26 +12,31 @@
tools:context="com.gabriel.buddhism.MainActivity"
tools:showIn="@layout/app_bar_main"
android:id="@+id/main_parent">
-
-
-
+
+
+
+
+
diff --git a/app/src/main/res/layout/dialogue_settings.xml b/app/src/main/res/layout/dialogue_settings.xml
deleted file mode 100644
index e325e80..0000000
--- a/app/src/main/res/layout/dialogue_settings.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/got_it.xml b/app/src/main/res/layout/got_it.xml
new file mode 100644
index 0000000..7f8c4c3
--- /dev/null
+++ b/app/src/main/res/layout/got_it.xml
@@ -0,0 +1,9 @@
+
+
\ No newline at end of file
diff --git a/app/src/main/res/menu/main.xml b/app/src/main/res/menu/main.xml
deleted file mode 100644
index a2411e3..0000000
--- a/app/src/main/res/menu/main.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml
new file mode 100644
index 0000000..450057f
--- /dev/null
+++ b/app/src/main/res/values-sv/strings.xml
@@ -0,0 +1,12 @@
+
+
+ JAG FÖRSTÅR
+ Stäng navigationsfältet
+ Öppna navigationsfältet
+ Från Gabriel Tofvesson
+ Hej!\nDenna applikation skapades med syfte att att ge svar på tre frågor angående Buddhism som ställts av Helena Sontag till mig och min klass som en examination.
+ Dra med fingret från vänster sida av skärmen mot den högra eller tryck på den befintliga ikonen för att öppna navigationsfältet. Tryck sedan på det svar du vill läsa.
+ Gör en reflekterande jämförelse mellan hinduismen och buddhismen, vilka likheter och skillnader finns det?
+ Hur uppnår man Nirvana enligt buddhismen, kan uppfattningen variera mellan de olika buddhistiska inriktningarna?
+ Buddha menade att människans livstörst gör livet till ett lidande. Vad menar han med det och vad är i sådana fall sann lycka?
+
\ No newline at end of file
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 7283c91..fdc3cd1 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -1,10 +1,13 @@
- Buddhism
+ BuddhismOpen navigation drawerClose navigation drawer
- SettingsHello!\nThis application was designed with the express intent of giving the answers to three distinct questions regarding Buddhism assigned to me (and the rest of my class) by Helena Sontag.
- To begin, swipe from the left of your screen to open the navigation bar. Simply click on the answer you would like to view from the navigation bar to navigate to the corresponding answer.
+ To begin, swipe from the left of your screen or tap the marked icon to open the navigation bar. Simply click on the answer you would like to view from the navigation bar to navigate to the corresponding answer.Sincerely, Gabriel Tofvesson
+ GOT IT
+ Reflect upon the apsects of both Buddhism and Hiduism and make a comparison between them. What are their similarities and what are their differences?
+ How does one achieve Nirvana according to Buddhism? Do these beliefs vary based on which subset of Buddhism one believes in?
+ According to Buddha, peoples thirst for life makes life torturous. What does he mean by that and what, in that case, is true joy?