droidfish/DroidFish/res/layout/title.xml

33 lines
1011 B
XML
Raw Normal View History

2011-11-12 20:44:06 +01:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
2011-11-12 20:44:06 +01:00
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical">
2011-11-12 20:44:06 +01:00
<TextView
style="?android:attr/windowTitleStyle"
2011-11-12 20:44:06 +01:00
android:id="@+id/white_clock"
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
style="?android:attr/windowTitleStyle"
2011-11-12 20:44:06 +01:00
android:id="@+id/title_text"
android:layout_weight="1"
2011-11-12 20:44:06 +01:00
android:text="@string/app_name"
android:layout_width="fill_parent"
android:gravity="center"
android:layout_height="wrap_content">
2011-11-12 20:44:06 +01:00
</TextView>
<TextView
style="?android:attr/windowTitleStyle"
2011-11-12 20:44:06 +01:00
android:id="@+id/black_clock"
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>
</LinearLayout>