2011-11-12 20:44:06 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-09-19 18:23:32 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-08-26 20:53:07 +02:00
|
|
|
android:layout_width="fill_parent"
|
2012-09-21 19:55:30 +02:00
|
|
|
android:layout_height="wrap_content"
|
2012-09-19 18:23:32 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
2012-09-21 19:55:30 +02:00
|
|
|
android:layout_marginTop="-10dp"
|
|
|
|
android:background="@android:drawable/title_bar"
|
2012-09-29 00:22:06 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:tag="title" >
|
2012-09-19 18:23:32 +02:00
|
|
|
<LinearLayout
|
2012-09-28 22:10:00 +02:00
|
|
|
android:id="@+id/first_title_line"
|
2012-08-26 20:53:07 +02:00
|
|
|
android:layout_width="fill_parent"
|
2012-09-19 18:23:32 +02:00
|
|
|
android:layout_height="wrap_content"
|
2012-09-21 19:55:30 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginTop="2dp"
|
2012-09-29 00:22:06 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:tag="title" >
|
2012-09-19 18:23:32 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/white_clock"
|
|
|
|
style="?android:attr/windowTitleStyle"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"
|
2012-09-21 19:55:30 +02:00
|
|
|
android:gravity="left"
|
2012-09-19 18:23:32 +02:00
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
2012-09-21 19:55:30 +02:00
|
|
|
android:scrollHorizontally="false"
|
2012-09-29 00:22:06 +02:00
|
|
|
android:singleLine="true"
|
2015-12-20 16:03:24 +01:00
|
|
|
android:textSize="14sp"
|
2012-09-29 00:22:06 +02:00
|
|
|
android:tag="title" >
|
2012-09-19 18:23:32 +02:00
|
|
|
</TextView>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title_text"
|
|
|
|
style="?android:attr/windowTitleStyle"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2012-09-21 19:55:30 +02:00
|
|
|
android:gravity="center"
|
2015-12-20 16:03:24 +01:00
|
|
|
android:textSize="14sp"
|
2012-09-29 00:22:06 +02:00
|
|
|
android:tag="title"
|
2012-09-19 18:23:32 +02:00
|
|
|
android:text="@string/app_name">
|
|
|
|
</TextView>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/black_clock"
|
|
|
|
style="?android:attr/windowTitleStyle"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"
|
2012-09-21 19:55:30 +02:00
|
|
|
android:gravity="right"
|
2012-09-19 18:23:32 +02:00
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
|
|
android:scrollHorizontally="true"
|
2012-09-29 00:22:06 +02:00
|
|
|
android:singleLine="true"
|
2015-12-20 16:03:24 +01:00
|
|
|
android:textSize="14sp"
|
2012-09-29 00:22:06 +02:00
|
|
|
android:tag="title" >
|
2012-09-19 18:23:32 +02:00
|
|
|
</TextView>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/second_title_line"
|
|
|
|
android:orientation="horizontal"
|
2012-08-26 20:53:07 +02:00
|
|
|
android:layout_width="fill_parent"
|
2012-09-19 18:23:32 +02:00
|
|
|
android:layout_height="wrap_content"
|
2012-09-29 00:22:06 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:tag="title" >
|
2012-09-19 18:23:32 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/white_pieces"
|
|
|
|
style="?android:attr/windowTitleStyle"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:gravity="center|center_vertical"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
|
|
android:singleLine="true"
|
2012-09-29 00:22:06 +02:00
|
|
|
android:tag="title"
|
2015-12-20 16:03:24 +01:00
|
|
|
android:textSize="14sp"
|
2012-09-19 18:23:32 +02:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:textStyle="bold">
|
|
|
|
</TextView>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title_text_summary"
|
|
|
|
style="?android:attr/windowTitleStyle"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center|center_vertical"
|
2012-09-29 00:22:06 +02:00
|
|
|
android:tag="title"
|
2015-12-20 16:03:24 +01:00
|
|
|
android:textSize="14sp"
|
2012-09-19 18:23:32 +02:00
|
|
|
android:text="">
|
|
|
|
</TextView>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/black_pieces"
|
|
|
|
style="?android:attr/windowTitleStyle"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:gravity="center|center_vertical"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
|
|
android:scrollHorizontally="true"
|
|
|
|
android:singleLine="true"
|
2012-09-29 00:22:06 +02:00
|
|
|
android:tag="title"
|
2015-12-20 16:03:24 +01:00
|
|
|
android:textSize="14sp"
|
2012-09-19 18:23:32 +02:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:textStyle="bold">
|
|
|
|
</TextView>
|
|
|
|
</LinearLayout>
|
2012-07-16 10:45:57 +02:00
|
|
|
</LinearLayout>
|