mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-28 06:29:09 +01:00
30 lines
943 B
XML
30 lines
943 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical">
|
|
<TextView
|
|
style="?android:attr/windowTitleStyle"
|
|
android:id="@+id/white_clock"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true">
|
|
</TextView>
|
|
<TextView
|
|
style="?android:attr/windowTitleStyle"
|
|
android:id="@+id/title_text"
|
|
android:text="@string/app_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true">
|
|
</TextView>
|
|
<TextView
|
|
style="?android:attr/windowTitleStyle"
|
|
android:id="@+id/black_clock"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true">
|
|
</TextView>
|
|
</RelativeLayout>
|