BottomBarLayout底部菜單簡(jiǎn)單使用代替RadioGroup

依賴//底部菜單

implementation'com.github.chaychan:BottomBarLayout:2.0.2'

這里記得添加整個(gè)項(xiàng)目的build

repositories{

? ? google()

jcenter()

maven{ url'https://jitpack.io' }

}

//布局文件

? ? android:layout_width="match_parent"

? ? android:layout_height="1px"

? ? android:background="#F1F1F1" />

? ? android:id="@+id/act_main_bottom_bar"

? ? android:layout_width="match_parent"

? ? android:layout_height="@dimen/dp_50"

? ? android:background="@color/white"

? ? android:orientation="horizontal">

? ? ? ? android:layout_width="wrap_content"

? ? ? ? android:layout_height="match_parent"

? ? ? ? android:layout_weight="1"

? ? ? ? app:iconHeight="@dimen/dp_28"

? ? ? ? app:iconNormal="@mipmap/ic_tab_news_nor"

? ? ? ? app:iconSelected="@mipmap/ic_tab_news_select"

? ? ? ? app:iconWidth="@dimen/dp_28"

? ? ? ? app:itemText="新聞"

? ? ? ? app:itemTextSize="@dimen/sp_10"

? ? ? ? app:textColorNormal="@color/text_99"

? ? ? ? app:textColorSelected="@color/main_color" />

? ? ? ? android:layout_width="wrap_content"

? ? ? ? android:layout_height="match_parent"

? ? ? ? android:layout_weight="1"

? ? ? ? app:iconHeight="@dimen/dp_28"

? ? ? ? app:iconNormal="@mipmap/ic_tab_video_nor"

? ? ? ? app:iconSelected="@mipmap/ic_tab_video_select"

? ? ? ? app:iconWidth="@dimen/dp_28"

? ? ? ? app:itemText="視頻"

? ? ? ? app:itemTextSize="@dimen/sp_10"

? ? ? ? app:textColorNormal="@color/text_99"

? ? ? ? app:textColorSelected="@color/main_color" />

? ? ? ? android:layout_width="wrap_content"

? ? ? ? android:layout_height="match_parent"

? ? ? ? android:layout_weight="1"

? ? ? ? app:iconHeight="@dimen/dp_28"

? ? ? ? app:iconNormal="@mipmap/ic_tab_live_nor"

? ? ? ? app:iconSelected="@mipmap/ic_tab_live_select"

? ? ? ? app:iconWidth="@dimen/dp_28"

? ? ? ? app:itemText="新聞"

? ? ? ? app:itemTextSize="@dimen/sp_10"

? ? ? ? app:textColorNormal="@color/text_99"

? ? ? ? app:textColorSelected="@color/main_color" />

? ? ? ? android:layout_width="wrap_content"

? ? ? ? android:layout_height="match_parent"

? ? ? ? android:layout_weight="1"

? ? ? ? app:iconHeight="@dimen/dp_28"

? ? ? ? app:iconNormal="@mipmap/ic_tab_mine_nor"

? ? ? ? app:iconSelected="@mipmap/ic_tab_mine_select"

? ? ? ? app:iconWidth="@dimen/dp_28"

? ? ? ? app:itemText="新聞"

? ? ? ? app:itemTextSize="@dimen/sp_10"

? ? ? ? app:textColorNormal="@color/text_99"

? ? ? ? app:textColorSelected="@color/main_color" />

</com.chaychan.library.BottomBarLayout>



MainActivity


/**

* 頁(yè)面控制

*/

public class MainActivityextends BaseActivity {

private BottomBarLayoutbottomBarLayout;

? ? private Listfragments;

? ? private androidx.viewpager.widget.ViewPageractMainLayout;

? ? private Listtittles;

? ? @Override

? ? public void initBar() {

BarUtils.setStatusBarColor(this, Color.WHITE);

? ? ? ? BarUtils.setStatusBarLightMode(this, true);

? ? }

@Override

? ? public int bandLayout() {

return R.layout.activity_main;

? ? }

@Override

? ? public void initView() {

bottomBarLayout = findViewById(R.id.act_main_bottom_bar);

? ? ? ? actMainLayout = findViewById(R.id.act_main_layout);

? ? ? ? tittles=new ArrayList<>();

? ? }

@Override

? ? public void initData() {

initFragment();

? ? ? ? initBottomSelect();

? ? ? ? bottomBarLayout.setCurrentItem(0);

? ? }

/**

? ? * 初始化Fragment

*/

? ? private void initFragment() {

fragments =new ArrayList<>();

? ? ? ? fragments.add(new NewsFragment());

? ? ? ? fragments.add(new VideoFragment());

? ? ? ? fragments.add(new LiveFragment());

? ? ? ? fragments.add(new MineFragment());

//重要部分添加聯(lián)動(dòng)

? ? ? ? bottomBarLayout.setSmoothScroll(true);

? ? ? ? TestFragmentAdapter adapter =new TestFragmentAdapter(getSupportFragmentManager(), fragments,tittles);

? ? ? ? actMainLayout.setAdapter(adapter);

? ? ? ? bottomBarLayout.setViewPager(actMainLayout);

? ? }

/**

? ? * 點(diǎn)擊控制頁(yè)面顯示

? ? * add hide show rp rm

*/

? ? private void initBottomSelect() {

//? ? ? ? bottomBarLayout.setOnItemSelectedListener(new BottomBarLayout.OnItemSelectedListener() {

//? ? ? ? ? ? @Override

//? ? ? ? ? ? public void onItemSelected(BottomBarItem bottomBarItem, int previousPosition, int currentPosition) {

//? ? ? ? ? ? ? ? if (previousPosition == currentPosition && currentPosition == 0 && !fragments.get(0).isAdded()) {

//? ? ? ? ? ? ? ? ? ? //第一次點(diǎn)擊0位置

//? ? ? ? ? ? ? ? ? ? getSupportFragmentManager().beginTransaction().add(R.id.act_main_layout, fragments.get(currentPosition)).commit();

//? ? ? ? ? ? ? ? } else if (previousPosition != currentPosition && fragments.get(currentPosition).isAdded()) {

//? ? ? ? ? ? ? ? ? ? //之前有頁(yè)面,新頁(yè)面 展示

//? ? ? ? ? ? ? ? ? ? getSupportFragmentManager().beginTransaction().hide(fragments.get(previousPosition)).show(fragments.get(currentPosition)).commit();

//? ? ? ? ? ? ? ? } else if (previousPosition != currentPosition) {

//? ? ? ? ? ? ? ? ? ? //之前有頁(yè)面,新頁(yè)面 添加

//? ? ? ? ? ? ? ? ? ? getSupportFragmentManager().beginTransaction().hide(fragments.get(previousPosition)).add(R.id.act_main_layout, fragments.get(currentPosition)).commit();

//? ? ? ? ? ? ? ? }

//? ? ? ? ? ? }

//? ? ? ? });

? ? }

}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末凯沪,一起剝皮案震驚了整個(gè)濱河市瀑罗,隨后出現(xiàn)的幾起案子锻拘,更是在濱河造成了極大的恐慌米母,老刑警劉巖,帶你破解...
    沈念sama閱讀 218,284評(píng)論 6 506
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件矫钓,死亡現(xiàn)場(chǎng)離奇詭異要尔,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)新娜,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,115評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門(mén)赵辕,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人概龄,你說(shuō)我怎么就攤上這事还惠。” “怎么了私杜?”我有些...
    開(kāi)封第一講書(shū)人閱讀 164,614評(píng)論 0 354
  • 文/不壞的土叔 我叫張陵蚕键,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我衰粹,道長(zhǎng)嚎幸,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,671評(píng)論 1 293
  • 正文 為了忘掉前任寄猩,我火速辦了婚禮嫉晶,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘田篇。我一直安慰自己替废,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,699評(píng)論 6 392
  • 文/花漫 我一把揭開(kāi)白布泊柬。 她就那樣靜靜地躺著椎镣,像睡著了一般。 火紅的嫁衣襯著肌膚如雪兽赁。 梳的紋絲不亂的頭發(fā)上状答,一...
    開(kāi)封第一講書(shū)人閱讀 51,562評(píng)論 1 305
  • 那天冷守,我揣著相機(jī)與錄音,去河邊找鬼惊科。 笑死拍摇,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的馆截。 我是一名探鬼主播充活,決...
    沈念sama閱讀 40,309評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼蜡娶!你這毒婦竟也來(lái)了混卵?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 39,223評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤窖张,失蹤者是張志新(化名)和其女友劉穎幕随,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體宿接,經(jīng)...
    沈念sama閱讀 45,668評(píng)論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡赘淮,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,859評(píng)論 3 336
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了澄阳。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,981評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡踏拜,死狀恐怖碎赢,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情速梗,我是刑警寧澤肮塞,帶...
    沈念sama閱讀 35,705評(píng)論 5 347
  • 正文 年R本政府宣布,位于F島的核電站姻锁,受9級(jí)特大地震影響枕赵,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜位隶,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,310評(píng)論 3 330
  • 文/蒙蒙 一拷窜、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧涧黄,春花似錦篮昧、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,904評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至春宣,卻和暖如春酵颁,著一層夾襖步出監(jiān)牢的瞬間嫉你,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 33,023評(píng)論 1 270
  • 我被黑心中介騙來(lái)泰國(guó)打工躏惋, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留幽污,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 48,146評(píng)論 3 370
  • 正文 我出身青樓其掂,卻偏偏與公主長(zhǎng)得像油挥,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子款熬,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,933評(píng)論 2 355

推薦閱讀更多精彩內(nèi)容