开发过程中,几乎每个项目都会使用到底部导航,这里简单的敲一个最基本的,用于方便开发
//大致效果截图
//主页面布局
<LinearLayout 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"
android:orientation="vertical"
tools:context="com.example.somet.p2pinvest.activity.MainActivity">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:id="@+id/fl_main"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/home_back_selected"
/>
<RadioGroup
android:layout_width="match_parent"
android:layout_height="54dp"
android:orientation="horizontal"
android:id="@+id/rg_main">
<RadioButton
android:id="@+id/rb_home"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:button="@null"
android:drawableTop="@drawable/rb_home_top"
android:gravity="center"
android:text="首页"
android:textColor="@drawable/rb_textcolor_blue" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:but