我正在使用BottomNavigationViewEX,每次单击此栏的其中一个按钮时,整个页面都会加载,甚至是底部和顶部栏。
这是我在每个活动中使用的代码:
private void setupBottomNavigationView() {
Log.d(TAG, "setupBottomNavigationView: setting up BottomNavigationView");
BottomNavigationViewEx bottomNavigationViewEx = (BottomNavigationViewEx) findViewById(R.id.BottomNavViewBar);
BottomNavigationViewHelper.setupBottomNavigationView(bottomNavigationViewEx);
BottomNavigationViewHelper.enableNavigation(HomeActivity.this, bottomNavigationViewEx);
Menu menu = bottomNavigationViewEx.getMenu();
MenuItem menuItem = menu.getItem(ACTIVITY_NUM);
menuItem.setChecked(true);
}
我很确定我应该只在一个活动中设置我的Bottom栏而不是每个活动,但我是Android Studio的初学者,所以我不确定如何实现这一点。
感谢您的帮助,我会根据需要提供尽可能多的信息。
编辑1:这是activity_popcore.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".popcore">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Top Bar -->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/relLayout1">
<include layout="@layout/layout_top_tabs"/>
</RelativeLayout>
<!-- Body -->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/relLayout2"
android:layout_below="@+id/relLayout1">
<include layout="@layout/layout_center_viewpager"/>
</RelativeLayout>
<!-- Bottom Bar -->
<include layout="@layout/layout_bottom_navigation_view"/>
</RelativeLayout>
这是我的layout_bottom_navigation_view.xml:
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true">
<com.ittianyu.bottomnavigationviewex.BottomNavigationViewEx
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/BottomNavViewBar"
android:background="@drawable/dark_grey_border_top"
app:itemIconTint="@color/bottom_nav_item_colors"
app:itemTextColor="@color/bottom_nav_item_colors"
app:menu="@menu/bottom_navigation_menu">
</com.ittianyu.bottomnavigationviewex.BottomNavigationViewEx>
</RelativeLayout>
如果你需要更多信息,请问我,谢谢你的帮助!
答案 0 :(得分:0)
我猜问题不在这里。我相信你应该分析你的Activity / Fragment上的onResume()块来识别问题。并请提供更多信息。