You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
4.1 KiB
118 lines
4.1 KiB
/** |
|
* ProjectLaogai |
|
* |
|
* Copyright 2018 <seil0@mosad.xyz> |
|
* |
|
* This program is free software; you can redistribute it and/or modify |
|
* it under the terms of the GNU General Public License as published by |
|
* the Free Software Foundation; either version 3 of the License, or |
|
* (at your option) any later version. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU General Public License |
|
* along with this program; if not, write to the Free Software |
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
|
* MA 02110-1301, USA. |
|
* |
|
*/ |
|
|
|
package org.mosad.seil0.projectlaogai |
|
|
|
import android.os.Bundle |
|
import android.support.design.widget.Snackbar |
|
import android.support.design.widget.NavigationView |
|
import android.support.v4.view.GravityCompat |
|
import android.support.v7.app.ActionBarDrawerToggle |
|
import android.support.v7.app.AppCompatActivity |
|
import android.view.Menu |
|
import android.view.MenuItem |
|
import kotlinx.android.synthetic.main.activity_main.* |
|
import kotlinx.android.synthetic.main.app_bar_main.* |
|
|
|
class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelectedListener { |
|
|
|
//TODO make toolbar and navbar global |
|
|
|
override fun onCreate(savedInstanceState: Bundle?) { |
|
super.onCreate(savedInstanceState) |
|
setContentView(R.layout.activity_main) |
|
setSupportActionBar(toolbar) |
|
|
|
//init home fragment TODO make a abstract fragment class |
|
val homeFragment = HomeFragment() |
|
val fragmentTransaction: android.support.v4.app.FragmentTransaction = supportFragmentManager.beginTransaction() |
|
fragmentTransaction.replace(R.id.fragment_container, homeFragment) |
|
fragmentTransaction.commit() |
|
|
|
fab.setOnClickListener { view -> |
|
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG) |
|
.setAction("Action", null).show() |
|
} |
|
|
|
val toggle = ActionBarDrawerToggle( |
|
this, drawer_layout, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close |
|
) |
|
drawer_layout.addDrawerListener(toggle) |
|
toggle.syncState() |
|
|
|
nav_view.setNavigationItemSelectedListener(this) |
|
} |
|
|
|
override fun onBackPressed() { |
|
if (drawer_layout.isDrawerOpen(GravityCompat.START)) { |
|
drawer_layout.closeDrawer(GravityCompat.START) |
|
} else { |
|
super.onBackPressed() |
|
} |
|
} |
|
|
|
override fun onCreateOptionsMenu(menu: Menu): Boolean { |
|
// Inflate the menu; this adds items to the action bar if it is present. |
|
menuInflater.inflate(R.menu.main, menu) |
|
return true |
|
} |
|
|
|
override fun onOptionsItemSelected(item: MenuItem): Boolean { |
|
// 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. |
|
return when (item.itemId) { |
|
R.id.action_settings -> true |
|
else -> super.onOptionsItemSelected(item) |
|
} |
|
} |
|
|
|
override fun onNavigationItemSelected(item: MenuItem): Boolean { |
|
// Handle navigation view item clicks here. |
|
when (item.itemId) { |
|
R.id.nav_home -> { |
|
// Handle the home action |
|
} |
|
R.id.nav_mensa -> { |
|
//val mensaFragment: MensaFragment = MensaFragment() |
|
//val fragmentTransaction: android.support.v4.app.FragmentTransaction = supportFragmentManager.beginTransaction() |
|
//fragmentTransaction.replace(R.id.fragment_container, mensaFragment) |
|
//fragmentTransaction.commit() |
|
} |
|
R.id.nav_timetable -> { |
|
|
|
} |
|
R.id.nav_moodle -> { |
|
|
|
} |
|
R.id.nav_email -> { |
|
|
|
} |
|
R.id.nav_settings -> { |
|
|
|
} |
|
} |
|
|
|
drawer_layout.closeDrawer(GravityCompat.START) |
|
return true |
|
} |
|
}
|
|
|