2011-11-12 20:44:06 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-07-16 10:45:57 +02:00
|
|
|
<LinearLayout
|
2011-11-12 20:44:06 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-07-16 10:45:57 +02:00
|
|
|
android:layout_width="fill_parent"
|
2011-11-27 02:24:52 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical">
|
2011-11-12 20:44:06 +01:00
|
|
|
<TextView
|
2011-11-27 02:24:52 +01:00
|
|
|
style="?android:attr/windowTitleStyle"
|
2011-11-12 20:44:06 +01:00
|
|
|
android:id="@+id/white_clock"
|
2012-07-16 10:45:57 +02:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:gravity="left"
|
|
|
|
android:layout_height="wrap_content">
|
2011-11-12 20:44:06 +01:00
|
|
|
</TextView>
|
|
|
|
<TextView
|
2011-11-27 02:24:52 +01:00
|
|
|
style="?android:attr/windowTitleStyle"
|
2011-11-12 20:44:06 +01:00
|
|
|
android:id="@+id/title_text"
|
2012-07-16 10:45:57 +02:00
|
|
|
android:layout_weight="1"
|
2011-11-12 20:44:06 +01:00
|
|
|
android:text="@string/app_name"
|
2012-07-16 10:45:57 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:gravity="center"
|
|
|
|
android:layout_height="wrap_content">
|
2011-11-12 20:44:06 +01:00
|
|
|
</TextView>
|
|
|
|
<TextView
|
2011-11-27 02:24:52 +01:00
|
|
|
style="?android:attr/windowTitleStyle"
|
2011-11-12 20:44:06 +01:00
|
|
|
android:id="@+id/black_clock"
|
2012-07-16 10:45:57 +02:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:gravity="right"
|
|
|
|
android:layout_height="wrap_content">
|
2011-11-12 20:44:06 +01:00
|
|
|
</TextView>
|
2012-07-16 10:45:57 +02:00
|
|
|
</LinearLayout>
|