Как полностью реализовать шаблон Навигационного Ящика в Kotlin - PullRequest
0 голосов
/ 11 июня 2019

Я ожидаю, что это будет действительно простой ответ. Я занимаюсь разработкой своего первого настоящего приложения на Android (трекер тренировок), и я хочу, чтобы оно имело макет навигационного ящика для большинства приложений. У меня есть куча страниц, по которым я хочу открыть ящик. Я выяснил, как изменить названия пунктов меню в файле меню activity_main_drawer.xml, но я не знаю, как прикрепить навигацию, когда пользователь нажимает на них. Мой код является кодом по умолчанию из шаблона:

MainActivity.kt

package com.example.grahamfitnesstracker

import android.os.Bundle
import android.support.design.widget.FloatingActionButton
import android.support.design.widget.Snackbar
import android.support.v4.view.GravityCompat
import android.support.v7.app.ActionBarDrawerToggle
import android.view.MenuItem
import android.support.v4.widget.DrawerLayout
import android.support.design.widget.NavigationView
import android.support.v7.app.AppCompatActivity
import android.support.v7.widget.Toolbar
import android.view.Menu

class MainActivity : AppCompatActivity(), NavigationView.OnNavigationItemSelectedListener {


    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        val toolbar: Toolbar = findViewById(R.id.toolbar)
        setSupportActionBar(toolbar)

        val fab: FloatingActionButton = findViewById(R.id.fab)
        fab.setOnClickListener { view ->
            Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                .setAction("Action", null).show()
        }
        val drawerLayout: DrawerLayout = findViewById(R.id.drawer_layout)
        val navView: NavigationView = findViewById(R.id.nav_view)
        val toggle = ActionBarDrawerToggle(
            this, drawerLayout, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close
        )
        drawerLayout.addDrawerListener(toggle)
        toggle.syncState()

        navView.setNavigationItemSelectedListener(this)
    }

    override fun onBackPressed() {
        val drawerLayout: DrawerLayout = findViewById(R.id.drawer_layout)
        if (drawerLayout.isDrawerOpen(GravityCompat.START)) {
            drawerLayout.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_current_workout -> {
                // Handle the camera action
            }
            R.id.nav_log -> {

            }
            R.id.nav_exercises -> {

            }
            R.id.nav_workouts -> {

            }
            R.id.nav_stats -> {

            }
            R.id.nav_settings -> {

            }
        }
        val drawerLayout: DrawerLayout = findViewById(R.id.drawer_layout)
        drawerLayout.closeDrawer(GravityCompat.START)
        return true
    }
}

И меню навигационной панели Activity_main_drawer.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
      tools:showIn="navigation_view">

    <group android:checkableBehavior="single">
        <item
                android:id="@+id/nav_current_workout"
                android:icon="@drawable/ic_menu_play_filled"
                android:title="@string/menu_current_workout"/>
        <item
                android:id="@+id/nav_log"
                android:icon="@drawable/ic_menu_log"
                android:title="@string/menu_log"/>
        <item
                android:id="@+id/nav_exercises"
                android:icon="@drawable/ic_menu_weight"
                android:title="@string/menu_exercises"/>
        <item
                android:id="@+id/nav_workouts"
                android:icon="@drawable/ic_menu_person"
                android:title="@string/menu_workouts"/>
        <item
                android:id="@+id/nav_stats"
                android:icon="@drawable/ic_menu_chart"
                android:title="@string/menu_stats"/>
    </group>
    <item android:title="">
        <menu>
            <item
                    android:id="@+id/nav_settings"
                    android:icon="@drawable/ic_menu_settings"
                    android:title="@string/menu_settings"/>
        </menu>
    </item>

</menu

И, наконец, в файле content_main.xml, который, как я полагаю, мне нужно поместить фрагменты (я до сих пор не до конца понимаю ...). Из одного руководства я изменил его на включение FrameLayout как:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        tools:showIn="@layout/app_bar_main"
        tools:context=".MainActivity">

    <!-- Note : This is the container Frame Layout for all the fragments-->
    <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/mainFrame">
    </FrameLayout>


</android.support.constraint.ConstraintLayout>

Я действительно просто не знаю, что добавить в элементы onNavigationItemSelected в MainActivity.kt для обработки навигации. Я узнал, что мне нужно заменить содержимое в content_main.xml на какой-то фрагмент, где я вставил пользовательский интерфейс своей страницы, но я не знаю, как это сделать. Может кто-нибудь мне помочь? Я рассмотрел несколько примеров, но они обычно реализуют свои собственные навигационные панели или используют java, что смущает меня как новичка.

1 Ответ

0 голосов
/ 13 июня 2019

Включили ли вы NavigationView в activity_main и добавили nav_header_man к этому представлению так:

activity_main

<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <include
        layout="@layout/app_bar_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <com.google.android.material.navigation.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"

        android:layout_gravity="start"

        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header_main"
        app:menu="@menu/activity_main_drawer" >

    </com.google.android.material.navigation.NavigationView>

</androidx.drawerlayout.widget.DrawerLayout>

И так как вы просиличто добавить в onNavigationItemSelected элементов в MainActivity.kt,

MainActivity.kt

override fun onNavigationItemSelected(item: MenuItem): Boolean {
        // Handle navigation view item clicks here.
        val i = Intent()
        when (item.itemId) {
            R.id.nav_current_workout -> {
                i.setClass(this, CurrentWorkoutActivity::class.java)
                startActivity(i)
            }
            R.id.nav_log -> {
                //similarly start activity with Intent 
            }
            R.id.nav_exercises -> {}
            R.id.nav_workouts -> {}
            R.id.nav_stats -> {}
            R.id.nav_settings -> {}
        }
        val drawerLayout: DrawerLayout = findViewById(R.id.drawer_layout)
        drawerLayout.closeDrawer(GravityCompat.START)
        return true
    }
}

Надеюсь, это поможет.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...