Created
February 28, 2015 08:28
-
-
Save mzgreen/d77ce91f21e9ceace291 to your computer and use it in GitHub Desktop.
Tabs layout file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:layout_width="match_parent" | |
| android:layout_height="@dimen/tabsHeight" | |
| android:background="?attr/colorPrimary"> | |
| <FrameLayout | |
| android:layout_width="0dp" | |
| android:layout_height="match_parent" | |
| android:layout_weight="1" > | |
| <TextView | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:text="@string/tab_1" | |
| android:gravity="center" | |
| style="@style/Base.TextAppearance.AppCompat.Body2" | |
| android:textColor="@android:color/white" | |
| android:background="@android:color/transparent" /> | |
| <View | |
| android:layout_width="match_parent" | |
| android:layout_height="6dp" | |
| android:layout_gravity="bottom" | |
| android:background="@android:color/white" /> | |
| </FrameLayout> | |
| <TextView | |
| android:layout_width="0dp" | |
| android:layout_height="match_parent" | |
| android:layout_weight="1" | |
| android:text="@string/tab_2" | |
| android:gravity="center" | |
| style="@style/Base.TextAppearance.AppCompat.Body2" | |
| android:textColor="@android:color/white" | |
| android:background="@android:color/transparent" /> | |
| </LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment