the-social-notebook-android/app/src/main/java/com/android_app/matan/ara/sagi/thesocialnotework/MainActivity.java

144 lines
4.6 KiB
Java
Raw Normal View History

2016-07-03 14:33:11 +00:00
package com.android_app.matan.ara.sagi.thesocialnotework;
import android.app.ProgressDialog;
import android.content.Context;
2016-07-03 14:33:11 +00:00
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v4.app.FragmentTransaction;
import android.util.Log;
import android.view.View;
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.MenuItem;
public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
2016-07-06 17:30:51 +00:00
public static final String LOCAL_DATA_TSN = "TSN_DATA_STORE";
2016-07-04 14:54:05 +00:00
protected final String TAG = "[TSN / MainActivity]";
2016-07-06 09:35:20 +00:00
protected String userId;
private GPSUtils gpsUtils;
private boolean locationPermission;
public static ProgressDialog progress;
2016-07-04 14:54:05 +00:00
2016-07-03 14:33:11 +00:00
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
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);
drawer.setDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
2016-07-06 09:35:20 +00:00
//get Bundle data (Userid)
Bundle b = getIntent().getExtras();
userId = b.getString("user_id");
2016-07-03 14:33:11 +00:00
//Change Layout
2016-07-04 14:54:05 +00:00
Log.d(TAG, "Changing Fragment to Personal Activity");
2016-07-03 14:33:11 +00:00
PersonalFragment personalFragment = new PersonalFragment();
2016-07-06 09:35:20 +00:00
personalFragment.setArguments(b);
2016-07-03 14:33:11 +00:00
FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
ft.replace(R.id.fragment_container, personalFragment);
ft.commit();
2016-07-04 14:54:05 +00:00
Log.d(TAG, "Changed");
gpsUtils = new GPSUtils(this);
gpsUtils.getLocation();
2016-07-03 14:33:11 +00:00
}
@Override
public void onBackPressed() {
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
}
}
@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) {
// Handle navigation view item clicks here.
int id = item.getItemId();
if (id == R.id.nav_explore) {
// Handle the camera action
} else if (id == R.id.nav_map) {
} else if (id == R.id.nav_personal) {
} else if (id == R.id.nav_settings) {
} else if (id == R.id.nav_logout) {
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
2016-07-06 15:23:16 +00:00
}
public GPSUtils getGPSUtils() {
return this.gpsUtils;
}
public void setLocationPermission(boolean locationPermission) {
this.locationPermission = locationPermission;
2016-07-03 14:33:11 +00:00
}
public static void showLoadingDialog(Context context, String title, String msg) {
progress = new ProgressDialog(context);
progress.setTitle(title);
progress.setMessage(msg);
progress.setCanceledOnTouchOutside(false);
progress.show();
}
public static void dismissLoadingDialog() {
if (progress != null && progress.isShowing()) {
progress.dismiss();
}
}
2016-07-03 14:33:11 +00:00
}