飞道的博客

Android开发笔记(一百六十九)利用BottomNavigationView实现底部标签栏

621人阅读  评论(0)

在Android Studio上创建官方默认的首屏标签页面很方便,首先右击需要添加标签栏的模块,在弹出的右键菜单中依次选择“New”——“Activity”——“Bottom Navigation Activity”,弹出下图所示的活动创建页面。


在创建页面的“Activity Name”一栏填写新活动的名称,再单击页面右下角的Finish按钮,Android Studio就会自动创建该活动的Java代码及其布局文件。
然后编译运行App,进入刚创建的活动页面,其界面效果如下图所示。可见测试页面的底部默认提供了三个导航标签,分别是Home、Dashboard和Notifications。


注意到初始页面的Home标签从文字到图片均为高亮显示,说明当前处于Home频道。接着点击Dashboard标签,此时界面如下图所示,可见切换到了Dashboard频道。


继续点击Notifications,此时界面如下图所示,可见切换到了Notifications频道。


不过为了定制页面的详细内容,开发者仍需修改相关代码,譬如将标签文字从英文改成中文,将频道上方的描述说明从英文改成中文,给频道页面添加图像视图等其他控件等等,故而还得梳理标签栏框架的实现方式。
首先查看标签页面的布局文件,它的关键代码如下所示:


  
  1.     <com.google.android.material.bottomnavigation.BottomNavigationView
  2.         android:id= "@+id/nav_view"
  3.         android:layout_width= "0dp"
  4.         android:layout_height= "wrap_content"
  5.         android:background= "?android:attr/windowBackground"
  6.         app:layout_constraintBottom_toBottomOf= "parent"
  7.         app:menu= "@menu/bottom_nav_menu" />    <fragment
  8.         android:id= "@+id/nav_host_fragment"
  9.         android:name= "androidx.navigation.fragment.NavHostFragment"
  10.         android:layout_width= "match_parent"
  11.         android:layout_height= "match_parent"
  12.         app:defaultNavHost= "true"
  13.         app:layout_constraintTop_toTopOf= "parent"
  14.         app:navGraph= "@navigation/mobile_navigation" />

从布局内容可知,标签页面主要包含两个组成部分,一个是位于底部的BottomNavigationView(底部导航视图),另一个是位于其上占据剩余屏幕的碎片fragment。底部导航视图又由一排标签菜单组成,具体菜单在@menu/bottom_nav_menu中定义;而碎片为各频道的主体部分,具体内容在app:navGraph="@navigation/mobile_navigation中定义。哟,原来奥妙就在这两个文件当中,赶紧打开menu目录之下的bottom_nav_menu.xml看看:


  
  1. <menu xmlns:android= "http://schemas.android.com/apk/res/android">
  2.     <item
  3.         android:id= "@+id/navigation_home"
  4.         android:icon= "@drawable/ic_home_black_24dp"
  5.         android:title= "@string/title_home" />
  6.     <item
  7.         android:id= "@+id/navigation_dashboard"
  8.         android:icon= "@drawable/ic_dashboard_black_24dp"
  9.         android:title= "@string/title_dashboard" />    <item
  10.         android:id= "@+id/navigation_notifications"
  11.         android:icon= "@drawable/ic_notifications_black_24dp"
  12.         android:title= "@string/title_notifications" />
  13. < /menu>

上面的菜单定义文件以menu为根节点,内部容纳三个item节点,分别对应屏幕底部的三个标签。每个item节点都拥有id、icon、title三个属性,其中id指定该菜单项的编号,icon指定该菜单项的图标,title指定该菜单项的文本。顺藤摸瓜查看values目录之下的strings.xml,果然找到了下面的三个标签文本定义:


  
  1.     < string name= "title_home">Home</ string>
  2.     < string name= "title_dashboard">Dashboard</ string>
  3.     < string name= "title_notifications">Notifications</ string>

搞清楚了底部标签栏的资源情况,接着打开navigation目录之下的mobile_navigation.xml,究竟里面是怎么定义各个频道的呢?


  
  1. <navigation xmlns:android= "http://schemas.android.com/apk/res/android"
  2.     xmlns:app= "http://schemas.android.com/apk/res-auto"
  3.     xmlns:tools= "http://schemas.android.com/tools"
  4.     android:id= "@+id/mobile_navigation"
  5.     app:startDestination= "@+id/navigation_home">
  6.     <fragment
  7.         android:id= "@+id/navigation_home"
  8.         android:name= "com.example.chapter12.ui.home.HomeFragment"
  9.         android:label= "@string/title_home"
  10.         tools:layout= "@layout/fragment_home" />
  11.     <fragment
  12.         android:id= "@+id/navigation_dashboard"
  13.         android:name= "com.example.chapter12.ui.dashboard.DashboardFragment"
  14.         android:label= "@string/title_dashboard"
  15.         tools:layout= "@layout/fragment_dashboard" />
  16.     <fragment
  17.         android:id= "@+id/navigation_notifications"
  18.         android:name= "com.example.chapter12.ui.notifications.NotificationsFragment"
  19.         android:label= "@string/title_notifications"
  20.         tools:layout= "@layout/fragment_notifications" />
  21. < /navigation>

上述的导航定义文件以navigation为根节点,内部依旧分布着三个fragment节点,显然正好对应三个频道。每个fragment节点拥有id、name、label、layout四个属性,各属性的用途说明如下:
id:指定当前碎片的编号。
name:指定当前碎片的完整类名路径。
label:指定当前碎片的的标题文本。
layout:指定当前碎片的布局文件。
这些默认的碎片代码到底有何不同,打开其中一个HomeFragment.java研究研究,它的关键代码如下所示:


  
  1.     public View onCreateView( @NonNull LayoutInflater inflater,
  2.                              ViewGroup container, Bundle savedInstanceState) {
  3.         homeViewModel = ViewModelProviders.of( this). get(HomeViewModel. class);
  4.         View root = inflater.inflate(R.layout.fragment_home, container, false);
  5.         final TextView textView = root.findViewById(R.id.text_home);
  6.         homeViewModel.getText().observe( this, new Observer<String>() {
  7.             @Override
  8.             public void onChanged( @Nullable String s) {
  9.                 textView.setText(s);
  10.             }
  11.         });
  12.         return root;
  13.     }

看来频道用到的碎片代码仍然在onCreateView方法中根据布局文件生成页面元素,这样修改频道界面就变成给碎片编码了。总算理清了这种底部导航的实现方式,接下来准备修理修理默认的标签及其频道。先打开values目录之下的strings.xml,把三个标签的文字从英文改成中文,修改内容示例如下:


  
  1.     < string name= "title_home">首页</ string>
  2.     < string name= "title_dashboard">仪表盘</ string>
  3.     < string name= "title_notifications">消息</ string>

再打开三个频道的碎片代码,给文本视图填上中文描述,首页频道HomeFragment.java的修改内容示例如下:


  
  1.     public View onCreateView( @NonNull LayoutInflater inflater,
  2.                              ViewGroup container, Bundle savedInstanceState) {
  3.         View root = inflater.inflate(R.layout.fragment_home, container, false);
  4.         final TextView textView = root.findViewById(R.id.text_home);
  5.         textView.setText( "这是首页页面");
  6.         return root;
  7.     }

因为默认代码里的ViewModel并非必需组件,所以简洁起见省去了ViewModel相关代码,另外两个碎片频道的代码依此类推。
重新编译运行App,改过的各频道界面如下面各图所示,从上到下分别为首页频道、仪表盘频道、消息频道的页面效果,可见三个频道从标签文本和说明描述都改成了汉字。


点此查看Android开发笔记的完整目录
 


转载:https://blog.csdn.net/aqi00/article/details/105747621
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场