问题
So my menu items wont do anything except show the enlarging animation when clicked on. Im trying to open a new activity with them, I have toast attached to one to see if does anything at all and I'm getting nothing. Is this a common issue?
minSdkVersion 17 targetSdkVersion 27
Layout
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="0dp"
android:layout_marginStart="0dp"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation" />
The layout is using, android.support.constraint.ConstraintLayout
Menu
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/navigation_home"
android:icon="@drawable/home"
android:title="@string/title_home" />
<item
android:id="@+id/navigation_apps"
android:icon="@drawable/apps"
android:title="@string/title_apps" />
<item
android:id="@+id/navigation_profile"
android:icon="@drawable/profile"
android:title="@string/title_profile" />
<item
android:id="@+id/navigation_logout"
android:icon="@drawable/logout"
android:title="@string/title_logout" />
</menu>
Java
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.navigation, 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.navigation_home) {
Intent navHome = new Intent(this, WordpressActivity.class);
this.startActivity(navHome);
return true;
}
if (id == R.id.navigation_apps) {
Toast.makeText(this, "apps is Clicked", Toast.LENGTH_LONG).show();
return true;
}
if (id == R.id.navigation_profile) {
Intent navProf = new Intent(this, AccountActivity.class);
this.startActivity(navProf);
return true;
}
if (id == R.id.navigation_logout) {
Intent navLog = new Intent(this, LogoutActivity.class);
this.startActivity(navLog);
return true;
}
return super.onOptionsItemSelected(item);
}
Thank you in advance for any help or direction to what the issue may be. I'm new to using the menu item click intent and I really don't understand why its not working.
回答1:
onOptionsItemSelected
is not meant to handle action on BottomNavigationView
. Action on MenuItem
in BottomNavigationView
should be done as follows:
BottomNavigationView bottomNavigationView = findViewById(R.id.navigation);
bottomNavigationView.setOnNavigationItemSelectedListener(new BottomNavigationView
.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(@NonNull final MenuItem item) {
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.navigation_home) {
Intent navHome = new Intent(MainActivity.this, WordpressActivity.class);
MainActivity.this.startActivity(navHome);
return true;
}
if (id == R.id.navigation_apps) {
Toast.makeText(MainActivity.this, "apps is Clicked", Toast.LENGTH_LONG).show();
return true;
}
if (id == R.id.navigation_profile) {
Intent navProf = new Intent(MainActivity.this, AccountActivity.class);
MainActivity.this.startActivity(navProf);
return true;
}
if (id == R.id.navigation_logout) {
Intent navLog = new Intent(MainActivity.this, LogoutActivity.class);
MainActivity.this.startActivity(navLog);
return true;
}
return false;
});
来源:https://stackoverflow.com/questions/51372114/android-studio-menu-item-click-not-working