All Projects → AdilSoomro → Iphone Tab In Android

AdilSoomro / Iphone Tab In Android

Licence: mit
android TabLayout widget at bottom like iPhone UITabBar

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Iphone Tab In Android

Androidxlazyload
😈😈Fragment lazy loading under the androix
Stars: ✭ 110 (-39.23%)
Mutual labels:  fragment
Navigator
Android Multi-module navigator, trying to find a way to navigate into a modularized android project
Stars: ✭ 131 (-27.62%)
Mutual labels:  fragment
Flutter bubble tab indicator
A Flutter library to add bubble tab indicator to TabBar
Stars: ✭ 149 (-17.68%)
Mutual labels:  tabbar
Swsegmentedcontrol
A Android-like tab bar, drop-in replacement for UISegmentedControl.
Stars: ✭ 115 (-36.46%)
Mutual labels:  tabbar
Relay Example
[READONLY] 💝 Examples of common Relay patterns used in real-world applications. This repository is automatically exported from https://github.com/adeira/universe via Shipit
Stars: ✭ 126 (-30.39%)
Mutual labels:  fragment
Poliopager
A flexible TabBarController with search tab like SNKRS.
Stars: ✭ 133 (-26.52%)
Mutual labels:  tabbar
Neteasecloudmusic Mvvm
Jetpack MVVM最佳实践 - 重构仿网易云音乐安卓客户端
Stars: ✭ 103 (-43.09%)
Mutual labels:  fragment
Nofragment
Fragment的封装,启动Fragment只需要调用startFragment(XXFragment.class);
Stars: ✭ 172 (-4.97%)
Mutual labels:  fragment
Tabtoolbar
A small library for creating tabbed toolbars
Stars: ✭ 129 (-28.73%)
Mutual labels:  tabbar
Minitabbar
📱 A minimal tab bar alternative
Stars: ✭ 146 (-19.34%)
Mutual labels:  tabbar
Sdkmonitor
App to display and monitor the targetSDK from installed apps.
Stars: ✭ 122 (-32.6%)
Mutual labels:  fragment
Hhtabbarview
A lightweight customized tabbar view. 📌
Stars: ✭ 125 (-30.94%)
Mutual labels:  tabbar
Fragivity
Use Fragment like Activity
Stars: ✭ 143 (-20.99%)
Mutual labels:  fragment
Tieguanyin
Activity Builder.
Stars: ✭ 113 (-37.57%)
Mutual labels:  fragment
Raised Center Tab In Android
Customized tabhost having raised center tab.
Stars: ✭ 158 (-12.71%)
Mutual labels:  fragment
Fragmentation
[DEPRECATED] A powerful library that manage Fragment for Android
Stars: ✭ 9,713 (+5266.3%)
Mutual labels:  fragment
Rxlifecycle
Rx binding of stock Android Activities & Fragment Lifecycle, avoiding memory leak
Stars: ✭ 131 (-27.62%)
Mutual labels:  fragment
React Native Head Tab View
Add collapsible headers to your tab-view components.
Stars: ✭ 171 (-5.52%)
Mutual labels:  tabbar
Binding
Simple API implement DataBinding and ViewBinding. 简单的 API 实现 DataBinding 和 ViewBinding,欢迎 star
Stars: ✭ 169 (-6.63%)
Mutual labels:  fragment
Bekcurvetabbar
Full Customizable Tabbar with IBInspectables
Stars: ✭ 144 (-20.44%)
Mutual labels:  tabbar

Android tabs at bottom!

This repository contains sample of setting android TabLayout at bottom and showing Fragment embedded in ViewPager. The magic happens very simply. You need to arrange them properly to stick tabs at bottom.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">
    <android.support.design.widget.TabLayout
        android:id="@+id/tab_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="@drawable/tab_background"/>
    <android.support.v4.view.ViewPager
        android:id="@+id/main_tab_content"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_alignParentTop="true"
        android:layout_above="@id/tab_layout"
        android:background="@android:color/white" />
</RelativeLayout>

Screenshot

nexus 5 sample here

Licence

The MIT License (MIT)

Copyright (c) 2014 Adil Soomro

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Happy Coding!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].