Android使用RadioGroup實現(xiàn)底部導(dǎo)航欄
RadioGroup實現(xiàn)底部導(dǎo)航欄效果,如圖::

實現(xiàn)可最基本的導(dǎo)航欄功能,不能左右滑動,只能點擊
1.內(nèi)嵌的fragment的布局:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:textSize="50sp" android:textColor="@color/colorPrimary" android:text="home"/> </LinearLayout>
2.fragment的activity代碼:
public class FrHome extends Fragment {
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = LayoutInflater.from(getContext()).inflate(R.layout.fragment_home, container, false);
return view;
}
}
以此為例根據(jù)需要編寫不同的fragment布局等等。
3.裝載fragment的界面布局如下(其中使用了selector進行實現(xiàn)點擊改變圖標(biāo)和文字顏色):
點擊改變文字顏色:
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_checked="true" android:color="#3F51B5"/> <item android:state_checked="false" android:color="#8f8f8f"/> </selector>
點擊改變圖標(biāo):
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_checked="true" android:drawable="@mipmap/ic_history_checked"/> <item android:state_checked="false" android:drawable="@mipmap/ic_history_unchecked"/> </selector>
界面布局:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto" tools:context="com.lotus.chartspagedemo.ActHome"> <FrameLayout android:id="@+id/frame_layout" android:layout_width="match_parent" android:layout_above="@+id/card_view" android:layout_height="match_parent"/> <android.support.v7.widget.CardView android:id="@+id/card_view" app:cardElevation="25dp" android:layout_alignParentBottom="true" android:layout_width="match_parent" android:layout_height="wrap_content"> <RadioGroup android:paddingTop="5dp" android:id="@+id/tab_bar" android:background="@color/app_white" android:layout_width="match_parent" android:layout_height="60dp" android:gravity="center" android:orientation="horizontal"> <RadioButton android:id="@+id/tab_home" android:gravity="center" android:button="@null" android:drawableTop="@drawable/selector_tab_home" android:layout_width="0dp" android:layout_weight="1" android:layout_height="match_parent" android:textColor="@drawable/selector_tab_color" android:text="首頁"/> <RadioButton android:id="@+id/tab_health" android:gravity="center" android:button="@null" android:drawableTop="@drawable/selector_tab_health" android:layout_width="0dp" android:layout_weight="1" android:layout_height="match_parent" android:textColor="@drawable/selector_tab_color" android:text="體檢測評" /> <RadioButton android:id="@+id/tab_personal" android:gravity="center" android:button="@null" android:drawableTop="@drawable/selector_tab_personal" android:layout_width="0dp" android:layout_weight="1" android:layout_height="match_parent" android:textColor="@drawable/selector_tab_color" android:text="個人中心" /> </RadioGroup> </android.support.v7.widget.CardView> </RelativeLayout>
4.裝載fragment的界面的activity代碼(加入雙擊返回鍵則退出應(yīng)用):
public class ActHome extends FragmentActivity implements RadioGroup.OnCheckedChangeListener {
@BindView(R.id.frame_layout)
FrameLayout frameLayout;
@BindView(R.id.tab_home)
RadioButton tabHome;
@BindView(R.id.tab_health)
RadioButton tabHealth;
@BindView(R.id.tab_personal)
RadioButton tabPersonal;
@BindView(R.id.tab_bar)
RadioGroup tabBar;
public final static String ACTION_EXIT_SYSTEM = "sys_exit";
private FragmentManager manager;
private FragmentTransaction transaction;
private FrHome frHome;
private FrHealth frHealth;
private FrPersonal frPersonal;
private long mExitTime;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
ButterKnife.bind(this);
RadioButton tabHome = (RadioButton) tabBar.getChildAt(0);
tabHome.setChecked(true);
tabBar.setOnCheckedChangeListener(this);
initFragment();
}
private void initFragment() {
manager = getSupportFragmentManager();
transaction = manager.beginTransaction();
frHome = new FrHome();
transaction.add(R.id.frame_layout,frHome);
transaction.commit();
}
@Override
public void onCheckedChanged(RadioGroup radioGroup, @IdRes int checkedId) {
switch (checkedId) {
case R.id.tab_home:
FragmentTransaction ft1 = manager.beginTransaction();
hideAll(ft1);
if (frHome!=null){
ft1.show(frHome);
}else {
frHome=new FrHome();
ft1.add(R.id.frame_layout,frHome);
}
ft1.commit();
break;
case R.id.tab_health:
FragmentTransaction ft2 = manager.beginTransaction();
hideAll(ft2);
if (frHealth!=null){
ft2.show(frHealth);
}else {
frHealth = new FrHealth();
ft2.add(R.id.frame_layout,frHealth);
}
ft2.commit();
break;
case R.id.tab_personal:
FragmentTransaction ft5 = manager.beginTransaction();
hideAll(ft5);
if (frPersonal!=null){
ft5.show(frPersonal);
}else {
frPersonal = new FrPersonal();
ft5.add(R.id.frame_layout, frPersonal);
}
ft5.commit();
break;
}
}
private void hideAll(FragmentTransaction ft){
if (ft==null){
return;
}
if (frHome!=null){
ft.hide(frHome);
}
if (frHealth!=null){
ft.hide(frHealth);
}
if (frPersonal!=null){
ft.hide(frPersonal);
}
}
@Override
public void onBackPressed() {
if ((System.currentTimeMillis() - mExitTime) > 2000) {
Toast.makeText(ActHome.this,"再按一次退出程序",Toast.LENGTH_SHORT).show();
mExitTime = System.currentTimeMillis();
} else {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
onExit(ActHome.this);
}
}, 500);
}
}
public static void onExit(final Context context) {
try {
Intent intent = new Intent();
intent.setAction(context.getApplicationContext().getPackageName() + ACTION_EXIT_SYSTEM);
context.sendBroadcast(intent);
// MobclickAgent.onKillProcess(context);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
System.exit(0);
}
}, 200);
} catch (Exception e) {
e.printStackTrace();
}
}
}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Apache?Cordova?Android原理應(yīng)用實例詳解
這篇文章主要為大家介紹了Apache?Cordova?Android原理應(yīng)用實例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2022-11-11
android實現(xiàn)上傳本地圖片到網(wǎng)絡(luò)功能
這篇文章主要為大家詳細(xì)介紹了android實現(xiàn)上傳本地圖片到網(wǎng)絡(luò)功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-09-09
flutter InheritedWidget使用方法總結(jié)
這篇文章主要為大家介紹了flutter InheritedWidget使用方法總結(jié)示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2022-11-11
Android中隱藏狀態(tài)欄和標(biāo)題欄的方法匯總(隱藏狀態(tài)欄、標(biāo)題欄的五種方法)
這篇文章主要介紹了Android中隱藏狀態(tài)欄和標(biāo)題欄的方法匯總(隱藏狀態(tài)欄、標(biāo)題欄的五種方法),非常不錯,具有參考借鑒價值,需要的朋友可以參考下2017-02-02
支付寶咻一咻怎么用 Android幫你實現(xiàn)咻一咻
Android幫你實現(xiàn)咻一咻,這篇文章主要為大家介紹了支付寶咻一咻的幾種思路,感興趣的朋友可以參考一下2016-02-02
Android實戰(zhàn)教程第十篇仿騰訊手機助手小火箭發(fā)射效果
這篇文章主要為大家詳細(xì)介紹了Android實戰(zhàn)教程第十篇仿騰訊手機助手小火箭發(fā)射效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下2016-11-11
Android 使用【AIDL】調(diào)用外部服務(wù)的解決方法
本篇文章是對Android中使用AIDL調(diào)用外部服務(wù)的方法進行了詳細(xì)的分析介紹,需要的朋友參考下2013-06-06

