Android基础——最详细的简单底部导航(RadioGroup+RadioButton)+FrameLayout联动

本文介绍了如何在Android应用中创建一个基本的底部导航,使用RadioGroup和RadioButton结合FrameLayout实现页面切换。通过ButterKnife库辅助初始化控件,并提供了解决Android Studio 3.0可能遇到的问题的配置方案。此外,还展示了如何添加标题栏和自定义布局。
摘要由CSDN通过智能技术生成

开发过程中,几乎每个项目都会使用到底部导航,这里简单的敲一个最基本的,用于方便开发

//大致效果截图


//主页面布局

<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
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值