mirror of
https://github.com/bspeice/UNCCGameDay
synced 2024-11-05 07:38:13 -05:00
26 lines
802 B
XML
26 lines
802 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
||
|
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_height="@dimen/tab_host_default_height"
|
||
|
android:orientation="horizontal"
|
||
|
style="@style/TabGameDayTheme"
|
||
|
android:gravity="center">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@android:id/icon"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:visibility="gone"
|
||
|
android:contentDescription="@null" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@android:id/title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
style="@style/TabTextGameDayTheme" />
|
||
|
|
||
|
</LinearLayout>
|