mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-02-12 07:07:54 +01:00
- All the menu items are now using standard Android system icons. - Removed the edit.png & start.png files as they're now obsolete. - Dialogs are now using standard Ok / Cancel buttons. - EditText views (in dialogs, 'Goto move' for instance) are now using standard Android background. - The dialog for selecting the game mode now has a title. - The dialog for selecting the player to move now uses radio boxes instead of buttons for a logical consistency. - The dialog for selecting the en passant file now closes itself after an item has been chosen. - The custom title bar (for clocks etc.) now uses the system style 'windowTitleStyle' for a visual consistency with non-custom titles. - The header and comment editors are now wrapped in a ScrollView to provide landscape support.
32 lines
1001 B
XML
32 lines
1001 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:text="White: 0:00"
|
|
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:text="Black: 0:00"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true">
|
|
</TextView>
|
|
</RelativeLayout>
|