Created
December 30, 2016 09:02
-
-
Save manishkpr/8c7b30fcab1be5b2a33e3f5a00fe9d77 to your computer and use it in GitHub Desktop.
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
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent" | |
android:orientation="vertical" > | |
<TableLayout | |
style="@style/layout_f_w" | |
android:stretchColumns="*" > | |
<TableRow | |
android:background="#dddddd" | |
android:id="@+id/tableRow1" | |
style="@style/layout_wrap" > | |
<!-- First Tab indicator --> | |
<LinearLayout | |
style="@style/indicator_style" | |
android:id="@+id/first_tab" > | |
</LinearLayout> | |
<!-- Second Tab indicator --> | |
<LinearLayout | |
style="@style/indicator_style" | |
android:id="@+id/second_tab" | |
android:visibility="invisible" > | |
</LinearLayout> | |
</TableRow> | |
</TableLayout> | |
<!-- Bottom line --> | |
<LinearLayout | |
style="@style/h_line" | |
android:orientation="vertical" > | |
</LinearLayout> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment