How to make Bottom Bar [or Navigation Bar like iPhone] like myTubo on Android?

前端 未结 4 2042
再見小時候
再見小時候 2020-12-07 16:24

I\'m looking how to get a similar bar at the bottom of my application like MyTubo (or GroupMe) for Android. Something like this:

4条回答
  •  心在旅途
    2020-12-07 16:30

    Per Android's specs, please don't do this. This is an iOS convention and simply does not work on the Android platform.

    http://developer.android.com/design/patterns/pure-android.html

    Don't use bottom tab bars

    Other platforms use the bottom tab bar to switch between the app's views. Per platform convention, Android's tabs for view control are shown in action bars at the top of the screen instead. In addition, Android apps may use a bottom bar to display actions on a split action bar.

    You should follow this guideline to create a consistent experience with other apps on the Android platform and to avoid confusion between actions and view switching on Android.

提交回复
热议问题