android底部导航栏demo,Android新的底部导航栏或BottomNavigationView

我想你可能会寻找这个.

这是一个快速启动代码片段:

public class MainActivity extends AppCompatActivity {

private BottomBar mBottomBar;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

// Notice how you don't use the setContentView method here! Just

// pass your layout to bottom bar, it will be taken care of.

// Everything will be just like you're used to.

mBottomBar = BottomBar.bind(this, R.layout.activity_main,

savedInstanceState);

mBottomBar.setItems(

new BottomBarTab(R.drawable.ic_recents, "Recents"),

new BottomBarTab(R.drawable.ic_favorites, "Favorites"),

new BottomBarTab(R.drawable.ic_nearby, "Nearby"),

new BottomBarTab(R.drawable.ic_friends, "Friends")

);

mBottomBar.setOnItemSelectedListener(new OnTabSelectedListener() {

@Override

public void onItemSelected(final int position) {

// the user selected a new tab

}

});

}

@Override

protected void onSaveInstanceState(Bundle outState) {

super.onSaveInstanceState(outState);

mBottomBar.onSaveInstanceState(outState);

}

}

这是参考链接.

编辑新版本.

底部导航视图已经在材料设计指南中使用了一段时间,但我们并不容易将其实现到我们的应用程序中.一些应用程序已经构建了自己的解决方案,而其他应用程序则依赖第三方开源库来完成工作.现在设计支持库正在看到这个底部导航栏的添加,让我们来看看我们如何使用它!

How to use ?

首先,我们需要更新我们的依赖!

compile ‘com.android.support:design:25.0.0’

Design xml.

xmlns:app="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"

android:layout_height="match_parent">

android:id="@+id/bottom_navigation"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_alignParentBottom="true"

app:itemBackground="@color/colorPrimary"

app:itemIconTint="@color/white"

app:itemTextColor="@color/white"

app:menu="@menu/bottom_navigation_main" />

Create menu as per your requirement.

xmlns:app="http://schemas.android.com/apk/res-auto">

android:id="@+id/action_favorites"

android:enabled="true"

android:icon="@drawable/ic_favorite_white_24dp"

android:title="@string/text_favorites"

app:showAsAction="ifRoom" />

android:id="@+id/action_schedules"

android:enabled="true"

android:icon="@drawable/ic_access_time_white_24dp"

android:title="@string/text_schedules"

app:showAsAction="ifRoom" />

android:id="@+id/action_music"

android:enabled="true"

android:icon="@drawable/ic_audiotrack_white_24dp"

android:title="@string/text_music"

app:showAsAction="ifRoom" />

Handling Enabled / Disabled states. Make selector file.

android:state_checked="true"

android:color="@color/colorPrimary" />

android:state_checked="false"

android:color="@color/grey" />

Handle click events.

BottomNavigationView bottomNavigationView = (BottomNavigationView)

findViewById(R.id.bottom_navigation);

bottomNavigationView.setOnNavigationItemSelectedListener(

new BottomNavigationView.OnNavigationItemSelectedListener() {

@Override

public boolean onNavigationItemSelected(@NonNull MenuItem item) {

switch (item.getItemId()) {

case R.id.action_favorites:

break;

case R.id.action_schedules:

break;

case R.id.action_music:

break;

}

return false;

}

});

如果你想了解更多关于它的方法以及它如何工作read this.

当然它会帮助你.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值