mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2025-12-30 08:23:31 +01:00
Huge clean-up. Separation between themes and style. Preparatory work for theme inheritance and alternative themes made by derivation. Problem: due to a pre-lollipop bug, I still have to remove some color indirections through attributes, as they are not preperly resolved.
26 lines
984 B
XML
26 lines
984 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:background="?attr/ui_theme_tabwidget_drawable"
|
|
>
|
|
|
|
<ImageView
|
|
android:id="@+id/tabindicator_icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top|center_horizontal"/>
|
|
|
|
<TextView android:id="@+id/tabindicator_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:gravity="bottom|center_horizontal"
|
|
android:ellipsize="marquee"
|
|
android:singleLine="true"
|
|
android:scrollHorizontally="true"
|
|
android:textColor="?attr/ui_theme_textbutton_textcolor_color"/>
|
|
|
|
</LinearLayout>
|