gecko/embedding/android/resources/layout/awesomebar_tab_indicator.xml
Lucas Rocha b19ceef2d2 Bug 702306 - Ensure we use sane text colours in AwesomeBar tabs (r=mfinkle)
Relying on system's theme to set text colour on tabs might not work on certain
devices.
2011-11-16 15:01:33 +00:00

16 lines
627 B
XML

<?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:padding="10sp"
android:gravity="center"
android:background="@drawable/awesomebar_tab_indicator">
<TextView android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="3dip"
android:textColor="@color/awesomebar_tab_text"/>
</LinearLayout>